KosmoKrator

productivity

Microsoft Excel CLI for AI Agents

Use the Microsoft Excel CLI from KosmoKrator to call Microsoft Excel tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Microsoft Excel CLI Setup

Microsoft Excel can be configured headlessly with `kosmokrator integrations:configure microsoft-excel`.

Install, configure, and verify
# 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-excel --enable --read allow --write ask --json
kosmokrator integrations:doctor microsoft-excel --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.

Generic CLI call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_get_workbook '{"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
Provider shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_get_workbook '{"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

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs microsoft-excel --json
kosmo integrations:docs microsoft-excel.microsoft_excel_drives_items_get_workbook --json
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_get_workbook --json
kosmo integrations:search "Microsoft Excel" --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-excel.microsoft_excel_drives_items_get_workbook

Get workbook from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_get_workbook '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_get_workbook '{"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-excel.microsoft_excel_drives_items_update_workbook

Update the navigation property workbook in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_update_workbook '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_update_workbook '{"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-excel.microsoft_excel_drives_items_delete_workbook

Delete navigation property workbook for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_delete_workbook '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_delete_workbook '{"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-excel.microsoft_excel_drives_items_workbook_get_application

Get application from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/application.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_get_application '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_get_application '{"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-excel.microsoft_excel_drives_items_workbook_update_application

Update the navigation property application in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/application.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_update_application '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_update_application '{"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-excel.microsoft_excel_drives_items_workbook_delete_application

Delete navigation property application for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/application.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_delete_application '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_delete_application '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_application_calculate

Invoke action calculate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/application/calculate.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_application_calculate '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_application_calculate '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_close_session

Invoke action closeSession\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/closeSession.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_close_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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_close_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-excel.microsoft_excel_drives_items_workbook_list_comments

Get comments from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/comments.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_list_comments '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_list_comments '{"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-excel.microsoft_excel_drives_items_workbook_create_comments

Create new navigation property to comments for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/comments.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_create_comments '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_create_comments '{"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-excel.microsoft_excel_drives_items_workbook_comments_get_count_8437

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/comments/$count.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_comments_get_count_8437 '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_comments_get_count_8437 '{"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-excel.microsoft_excel_drives_items_workbook_get_comments

Get comments from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/comments/{workbookComment-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_comment_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_get_comments '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_get_comments '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_update_comments

Update the navigation property comments in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/comments/{workbookComment-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_comment_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_update_comments '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_update_comments '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_delete_comments

Delete navigation property comments for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/comments/{workbookComment-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_comment_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_delete_comments '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_delete_comments '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_comments_list_replies

Get replies from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/comments/{workbookComment-id}/replies.

Read read
Parameters
drive_id, drive_item_id, workbook_comment_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_comments_list_replies '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_comments_list_replies '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_comments_create_replies

Create new navigation property to replies for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/comments/{workbookComment-id}/replies.

Write write
Parameters
drive_id, drive_item_id, workbook_comment_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_comments_create_replies '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_comments_create_replies '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_comments_replies_get_count_5e78

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/comments/{workbookComment-id}/replies/$count.

Read read
Parameters
drive_id, drive_item_id, workbook_comment_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_comments_replies_get_count_5e78 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_comments_replies_get_count_5e78 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_comments_get_replies

Get replies from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/comments/{workbookComment-id}/replies/{workbookCommentReply-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_comment_id, workbook_comment_reply_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_comments_get_replies '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","workbook_comment_reply_id":"example_workbook_comment_reply_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_comments_get_replies '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","workbook_comment_reply_id":"example_workbook_comment_reply_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_comments_update_replies

Update the navigation property replies in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/comments/{workbookComment-id}/replies/{workbookCommentReply-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_comment_id, workbook_comment_reply_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_comments_update_replies '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","workbook_comment_reply_id":"example_workbook_comment_reply_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_comments_update_replies '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","workbook_comment_reply_id":"example_workbook_comment_reply_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_comments_delete_replies

Delete navigation property replies for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/comments/{workbookComment-id}/replies/{workbookCommentReply-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_comment_id, workbook_comment_reply_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_comments_delete_replies '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","workbook_comment_reply_id":"example_workbook_comment_reply_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_comments_delete_replies '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_comment_id":"example_workbook_comment_id","workbook_comment_reply_id":"example_workbook_comment_reply_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_create_session

Invoke action createSession\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/createSession.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_create_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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_create_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-excel.microsoft_excel_drives_items_workbook_get_functions

Get functions from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/functions.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_get_functions '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_get_functions '{"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-excel.microsoft_excel_drives_items_workbook_update_functions

Update the navigation property functions in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/functions.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_update_functions '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_update_functions '{"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-excel.microsoft_excel_drives_items_workbook_delete_functions

Delete navigation property functions for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/functions.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_delete_functions '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_delete_functions '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_abs

Invoke action abs\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/abs.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_abs '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_abs '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_accr_int

Invoke action accrInt\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/accrInt.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_accr_int '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_accr_int '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_accr_int_m

Invoke action accrIntM\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/accrIntM.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_accr_int_m '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_accr_int_m '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acos

Invoke action acos\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/acos.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acos '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_acos '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acosh

Invoke action acosh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/acosh.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acosh '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_acosh '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acot

Invoke action acot\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/acot.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acot '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_acot '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acoth

Invoke action acoth\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/acoth.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acoth '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_acoth '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_amor_degrc

Invoke action amorDegrc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/amorDegrc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_amor_degrc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_amor_degrc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_amor_linc

Invoke action amorLinc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/amorLinc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_amor_linc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_amor_linc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_and

Invoke action and\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/and.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_and '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_and '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_arabic

Invoke action arabic\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/arabic.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_arabic '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_arabic '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_areas

Invoke action areas\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/areas.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_areas '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_areas '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asc

Invoke action asc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/asc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_asc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asin

Invoke action asin\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/asin.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asin '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_asin '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asinh

Invoke action asinh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/asinh.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asinh '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_asinh '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atan

Invoke action atan\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/atan.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atan '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_atan '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atan2

Invoke action atan2\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/atan2.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atan2 '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_atan2 '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atanh

Invoke action atanh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/atanh.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atanh '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_atanh '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ave_dev

Invoke action aveDev\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/aveDev.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ave_dev '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_ave_dev '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average

Invoke action average\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/average.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_average '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_a

Invoke action averageA\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/averageA.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_a '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_a '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_if

Invoke action averageIf\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/averageIf.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_if '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_if '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_ifs

Invoke action averageIfs\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/averageIfs.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_ifs '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_ifs '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_baht_text

Invoke action bahtText\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/bahtText.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_baht_text '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_baht_text '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_base

Invoke action base\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/base.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_base '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_base '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_i

Invoke action besselI\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/besselI.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_i '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_i '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_j

Invoke action besselJ\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/besselJ.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_j '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_j '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_k

Invoke action besselK\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/besselK.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_k '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_k '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_y

Invoke action besselY\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/besselY.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_y '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_y '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_beta_dist

Invoke action beta_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/beta_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_beta_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_beta_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_beta_inv

Invoke action beta_Inv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/beta_Inv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_beta_inv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_beta_inv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_dec

Invoke action bin2Dec\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/bin2Dec.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_dec '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_dec '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_hex

Invoke action bin2Hex\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/bin2Hex.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_hex '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_hex '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_oct

Invoke action bin2Oct\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/bin2Oct.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_oct '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_oct '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_dist

Invoke action binom_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/binom_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_dist_range

Invoke action binom_Dist_Range\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/binom_Dist_Range.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_dist_range '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_dist_range '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_inv

Invoke action binom_Inv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/binom_Inv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_inv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_inv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitand

Invoke action bitand\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/bitand.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitand '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitand '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitlshift

Invoke action bitlshift\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/bitlshift.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitlshift '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitlshift '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitor

Invoke action bitor\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/bitor.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitor '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitor '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitrshift

Invoke action bitrshift\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/bitrshift.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitrshift '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitrshift '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitxor

Invoke action bitxor\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/bitxor.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitxor '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitxor '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ceiling_math

Invoke action ceiling_Math\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/ceiling_Math.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ceiling_math '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_ceiling_math '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ceiling_precise

Invoke action ceiling_Precise\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/ceiling_Precise.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ceiling_precise '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_ceiling_precise '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_char

Invoke action char\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/char.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_char '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_char '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_dist

Invoke action chiSq_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/chiSq_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_dist_rt

Invoke action chiSq_Dist_RT\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/chiSq_Dist_RT.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_dist_rt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_dist_rt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_inv

Invoke action chiSq_Inv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/chiSq_Inv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_inv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_inv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_inv_rt

Invoke action chiSq_Inv_RT\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/chiSq_Inv_RT.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_inv_rt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_inv_rt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_choose

Invoke action choose\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/choose.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_choose '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_choose '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_clean

Invoke action clean\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/clean.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_clean '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_clean '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_code

Invoke action code\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/code.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_code '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_code '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_columns

Invoke action columns\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/columns.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_columns '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_columns '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_combin

Invoke action combin\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/combin.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_combin '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_combin '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_combina

Invoke action combina\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/combina.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_combina '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_combina '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_complex

Invoke action complex\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/complex.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_complex '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_complex '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_concatenate

Invoke action concatenate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/concatenate.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_concatenate '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_concatenate '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_confidence_norm

Invoke action confidence_Norm\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/confidence_Norm.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_confidence_norm '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_confidence_norm '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_confidence_t

Invoke action confidence_T\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/confidence_T.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_confidence_t '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_confidence_t '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_convert

Invoke action convert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/convert.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_convert '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_convert '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cos

Invoke action cos\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/cos.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cos '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_cos '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cosh

Invoke action cosh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/cosh.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cosh '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_cosh '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cot

Invoke action cot\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/cot.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cot '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_cot '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coth

Invoke action coth\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/coth.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coth '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_coth '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count

Invoke action count\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/count.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_count '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_a

Invoke action countA\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/countA.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_a '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_a '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_blank

Invoke action countBlank\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/countBlank.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_blank '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_blank '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_if

Invoke action countIf\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/countIf.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_if '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_if '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_ifs

Invoke action countIfs\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/countIfs.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_ifs '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_ifs '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_day_bs

Invoke action coupDayBs\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/coupDayBs.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_day_bs '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_day_bs '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_days

Invoke action coupDays\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/coupDays.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_days '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_days '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_days_nc

Invoke action coupDaysNc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/coupDaysNc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_days_nc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_days_nc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_ncd

Invoke action coupNcd\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/coupNcd.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_ncd '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_ncd '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_num

Invoke action coupNum\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/coupNum.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_num '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_num '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_pcd

Invoke action coupPcd\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/coupPcd.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_pcd '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_pcd '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_csc

Invoke action csc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/csc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_csc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_csc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_csch

Invoke action csch\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/csch.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_csch '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_csch '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cum_ipmt

Invoke action cumIPmt\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/cumIPmt.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cum_ipmt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_cum_ipmt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cum_princ

Invoke action cumPrinc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/cumPrinc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cum_princ '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_cum_princ '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_date

Invoke action date\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/date.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_date '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_date '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_datevalue

Invoke action datevalue\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/datevalue.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_datevalue '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_datevalue '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_daverage

Invoke action daverage\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/daverage.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_daverage '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_daverage '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_day

Invoke action day\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/day.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_day '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_day '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_days

Invoke action days\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/days.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_days '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_days '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_days360

Invoke action days360\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/days360.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_days360 '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_days360 '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_db

Invoke action db\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/db.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_db '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_db '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dbcs

Invoke action dbcs\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dbcs.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dbcs '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dbcs '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dcount

Invoke action dcount\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dcount.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dcount '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dcount '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dcount_a

Invoke action dcountA\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dcountA.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dcount_a '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dcount_a '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ddb

Invoke action ddb\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/ddb.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ddb '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_ddb '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_bin

Invoke action dec2Bin\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dec2Bin.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_bin '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_bin '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_hex

Invoke action dec2Hex\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dec2Hex.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_hex '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_hex '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_oct

Invoke action dec2Oct\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dec2Oct.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_oct '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_oct '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_decimal

Invoke action decimal\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/decimal.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_decimal '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_decimal '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_degrees

Invoke action degrees\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/degrees.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_degrees '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_degrees '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_delta

Invoke action delta\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/delta.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_delta '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_delta '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dev_sq

Invoke action devSq\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/devSq.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dev_sq '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dev_sq '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dget

Invoke action dget\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dget.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dget '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dget '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_disc

Invoke action disc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/disc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_disc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_disc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dmax

Invoke action dmax\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dmax.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dmax '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dmax '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dmin

Invoke action dmin\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dmin.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dmin '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dmin '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar

Invoke action dollar\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dollar.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar_de

Invoke action dollarDe\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dollarDe.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar_de '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar_de '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar_fr

Invoke action dollarFr\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dollarFr.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar_fr '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar_fr '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dproduct

Invoke action dproduct\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dproduct.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dproduct '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dproduct '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dst_dev

Invoke action dstDev\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dstDev.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dst_dev '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dst_dev '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dst_dev_p

Invoke action dstDevP\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dstDevP.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dst_dev_p '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dst_dev_p '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dsum

Invoke action dsum\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dsum.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dsum '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dsum '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_duration

Invoke action duration\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/duration.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_duration '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_duration '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dvar

Invoke action dvar\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dvar.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dvar '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dvar '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dvar_p

Invoke action dvarP\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/dvarP.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dvar_p '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_dvar_p '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ecma_ceiling

Invoke action ecma_Ceiling\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/ecma_Ceiling.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ecma_ceiling '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_ecma_ceiling '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_edate

Invoke action edate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/edate.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_edate '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_edate '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_effect

Invoke action effect\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/effect.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_effect '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_effect '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_eo_month

Invoke action eoMonth\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/eoMonth.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_eo_month '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_eo_month '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf

Invoke action erf\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/erf.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_c

Invoke action erfC\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/erfC.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_c '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_c '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_c_precise

Invoke action erfC_Precise\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/erfC_Precise.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_c_precise '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_c_precise '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_precise

Invoke action erf_Precise\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/erf_Precise.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_precise '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_precise '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_error_type

Invoke action error_Type\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/error_Type.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_error_type '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_error_type '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_even

Invoke action even\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/even.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_even '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_even '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_exact

Invoke action exact\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/exact.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_exact '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_exact '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_exp

Invoke action exp\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/exp.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_exp '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_exp '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_expon_dist

Invoke action expon_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/expon_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_expon_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_expon_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_dist

Invoke action f_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/f_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_dist_rt

Invoke action f_Dist_RT\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/f_Dist_RT.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_dist_rt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_dist_rt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_inv

Invoke action f_Inv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/f_Inv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_inv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_inv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_inv_rt

Invoke action f_Inv_RT\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/f_Inv_RT.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_inv_rt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_inv_rt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fact

Invoke action fact\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/fact.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fact '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_fact '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fact_double

Invoke action factDouble\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/factDouble.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fact_double '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_fact_double '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_false

Invoke action false\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/false.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_false '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_false '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_find

Invoke action find\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/find.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_find '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_find '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_find_b

Invoke action findB\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/findB.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_find_b '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_find_b '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fisher

Invoke action fisher\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/fisher.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fisher '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_fisher '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fisher_inv

Invoke action fisherInv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/fisherInv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fisher_inv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_fisher_inv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fixed

Invoke action fixed\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/fixed.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fixed '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_fixed '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_floor_math

Invoke action floor_Math\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/floor_Math.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_floor_math '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_floor_math '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_floor_precise

Invoke action floor_Precise\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/floor_Precise.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_floor_precise '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_floor_precise '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fv

Invoke action fv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/fv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_fv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fvschedule

Invoke action fvschedule\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/fvschedule.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fvschedule '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_fvschedule '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma

Invoke action gamma\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/gamma.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_ln

Invoke action gammaLn\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/gammaLn.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_ln '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_ln '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_ln_precise

Invoke action gammaLn_Precise\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/gammaLn_Precise.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_ln_precise '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_ln_precise '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_dist

Invoke action gamma_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/gamma_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_inv

Invoke action gamma_Inv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/gamma_Inv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_inv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_inv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gauss

Invoke action gauss\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/gauss.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gauss '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_gauss '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gcd

Invoke action gcd\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/gcd.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gcd '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_gcd '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ge_step

Invoke action geStep\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/geStep.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ge_step '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_ge_step '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_geo_mean

Invoke action geoMean\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/geoMean.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_geo_mean '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_geo_mean '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_har_mean

Invoke action harMean\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/harMean.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_har_mean '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_har_mean '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_bin

Invoke action hex2Bin\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/hex2Bin.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_bin '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_bin '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_dec

Invoke action hex2Dec\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/hex2Dec.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_dec '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_dec '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_oct

Invoke action hex2Oct\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/hex2Oct.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_oct '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_oct '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hlookup

Invoke action hlookup\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/hlookup.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hlookup '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_hlookup '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hour

Invoke action hour\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/hour.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hour '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_hour '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hyp_geom_dist

Invoke action hypGeom_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/hypGeom_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hyp_geom_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_hyp_geom_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hyperlink

Invoke action hyperlink\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/hyperlink.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hyperlink '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_hyperlink '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_if

Invoke action if\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/if.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_if '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_if '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_abs

Invoke action imAbs\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imAbs.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_abs '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_abs '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_argument

Invoke action imArgument\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imArgument.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_argument '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_argument '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_conjugate

Invoke action imConjugate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imConjugate.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_conjugate '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_conjugate '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cos

Invoke action imCos\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imCos.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cos '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cos '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cosh

Invoke action imCosh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imCosh.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cosh '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cosh '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cot

Invoke action imCot\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imCot.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cot '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cot '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_csc

Invoke action imCsc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imCsc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_csc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_csc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_csch

Invoke action imCsch\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imCsch.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_csch '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_csch '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_div

Invoke action imDiv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imDiv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_div '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_div '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_exp

Invoke action imExp\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imExp.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_exp '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_exp '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_ln

Invoke action imLn\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imLn.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_ln '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_ln '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_log10

Invoke action imLog10\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imLog10.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_log10 '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_log10 '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_log2

Invoke action imLog2\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imLog2.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_log2 '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_log2 '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_power

Invoke action imPower\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imPower.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_power '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_power '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_product

Invoke action imProduct\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imProduct.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_product '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_product '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_real

Invoke action imReal\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imReal.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_real '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_real '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sec

Invoke action imSec\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imSec.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sec '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sec '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sech

Invoke action imSech\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imSech.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sech '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sech '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sin

Invoke action imSin\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imSin.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sin '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sin '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sinh

Invoke action imSinh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imSinh.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sinh '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sinh '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sqrt

Invoke action imSqrt\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imSqrt.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sqrt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sqrt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sub

Invoke action imSub\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imSub.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sub '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sub '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sum

Invoke action imSum\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imSum.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sum '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sum '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_tan

Invoke action imTan\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imTan.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_tan '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_tan '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_imaginary

Invoke action imaginary\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/imaginary.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_imaginary '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_imaginary '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_int

Invoke action int\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/int.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_int '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_int '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_int_rate

Invoke action intRate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/intRate.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_int_rate '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_int_rate '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ipmt

Invoke action ipmt\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/ipmt.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ipmt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_ipmt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_irr

Invoke action irr\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/irr.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_irr '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_irr '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_err

Invoke action isErr\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isErr.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_err '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_err '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_error

Invoke action isError\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isError.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_error '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_error '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_even

Invoke action isEven\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isEven.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_even '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_even '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_formula

Invoke action isFormula\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isFormula.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_formula '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_formula '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_logical

Invoke action isLogical\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isLogical.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_logical '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_logical '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_na

Invoke action isNA\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isNA.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_na '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_na '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_non_text

Invoke action isNonText\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isNonText.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_non_text '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_non_text '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_number

Invoke action isNumber\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isNumber.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_number '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_number '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_odd

Invoke action isOdd\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isOdd.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_odd '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_odd '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_text

Invoke action isText\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isText.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_text '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_text '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_iso_week_num

Invoke action isoWeekNum\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isoWeekNum.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_iso_week_num '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_iso_week_num '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_iso_ceiling

Invoke action iso_Ceiling\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/iso_Ceiling.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_iso_ceiling '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_iso_ceiling '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ispmt

Invoke action ispmt\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/ispmt.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ispmt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_ispmt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_isref

Invoke action isref\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/isref.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_isref '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_isref '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_kurt

Invoke action kurt\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/kurt.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_kurt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_kurt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_large

Invoke action large\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/large.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_large '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_large '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lcm

Invoke action lcm\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/lcm.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lcm '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_lcm '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_left

Invoke action left\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/left.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_left '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_left '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_leftb

Invoke action leftb\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/leftb.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_leftb '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_leftb '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_len

Invoke action len\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/len.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_len '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_len '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lenb

Invoke action lenb\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/lenb.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lenb '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_lenb '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ln

Invoke action ln\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/ln.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ln '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_ln '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log

Invoke action log\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/log.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_log '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log10

Invoke action log10\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/log10.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log10 '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_log10 '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log_norm_dist

Invoke action logNorm_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/logNorm_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log_norm_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_log_norm_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log_norm_inv

Invoke action logNorm_Inv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/logNorm_Inv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log_norm_inv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_log_norm_inv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lookup

Invoke action lookup\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/lookup.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lookup '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_lookup '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lower

Invoke action lower\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/lower.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lower '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_lower '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_match

Invoke action match\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/match.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_match '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_match '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_max

Invoke action max\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/max.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_max '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_max '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_max_a

Invoke action maxA\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/maxA.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_max_a '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_max_a '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mduration

Invoke action mduration\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/mduration.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mduration '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_mduration '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_median

Invoke action median\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/median.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_median '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_median '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mid

Invoke action mid\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/mid.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mid '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_mid '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_midb

Invoke action midb\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/midb.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_midb '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_midb '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_min

Invoke action min\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/min.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_min '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_min '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_min_a

Invoke action minA\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/minA.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_min_a '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_min_a '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_minute

Invoke action minute\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/minute.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_minute '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_minute '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mirr

Invoke action mirr\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/mirr.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mirr '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_mirr '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mod

Invoke action mod\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/mod.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mod '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_mod '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_month

Invoke action month\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/month.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_month '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_month '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mround

Invoke action mround\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/mround.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mround '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_mround '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_multi_nomial

Invoke action multiNomial\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/multiNomial.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_multi_nomial '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_multi_nomial '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_n

Invoke action n\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/n.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_n '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_n '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_na

Invoke action na\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/na.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_na '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_na '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_neg_binom_dist

Invoke action negBinom_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/negBinom_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_neg_binom_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_neg_binom_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_network_days

Invoke action networkDays\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/networkDays.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_network_days '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_network_days '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_network_days_intl

Invoke action networkDays_Intl\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/networkDays_Intl.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_network_days_intl '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_network_days_intl '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_nominal

Invoke action nominal\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/nominal.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_nominal '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_nominal '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_dist

Invoke action norm_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/norm_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_inv

Invoke action norm_Inv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/norm_Inv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_inv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_inv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_s_dist

Invoke action norm_S_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/norm_S_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_s_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_s_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_s_inv

Invoke action norm_S_Inv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/norm_S_Inv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_s_inv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_s_inv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_not

Invoke action not\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/not.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_not '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_not '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_now

Invoke action now\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/now.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_now '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_now '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_nper

Invoke action nper\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/nper.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_nper '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_nper '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_npv

Invoke action npv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/npv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_npv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_npv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_number_value

Invoke action numberValue\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/numberValue.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_number_value '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_number_value '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_bin

Invoke action oct2Bin\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/oct2Bin.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_bin '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_bin '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_dec

Invoke action oct2Dec\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/oct2Dec.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_dec '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_dec '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_hex

Invoke action oct2Hex\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/oct2Hex.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_hex '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_hex '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd

Invoke action odd\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/odd.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_fprice

Invoke action oddFPrice\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/oddFPrice.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_fprice '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_fprice '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_fyield

Invoke action oddFYield\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/oddFYield.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_fyield '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_fyield '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_lprice

Invoke action oddLPrice\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/oddLPrice.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_lprice '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_lprice '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_lyield

Invoke action oddLYield\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/oddLYield.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_lyield '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_lyield '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_or

Invoke action or\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/or.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_or '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_or '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pduration

Invoke action pduration\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/pduration.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pduration '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_pduration '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percent_rank_exc

Invoke action percentRank_Exc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/percentRank_Exc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percent_rank_exc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_percent_rank_exc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percent_rank_inc

Invoke action percentRank_Inc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/percentRank_Inc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percent_rank_inc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_percent_rank_inc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percentile_exc

Invoke action percentile_Exc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/percentile_Exc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percentile_exc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_percentile_exc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percentile_inc

Invoke action percentile_Inc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/percentile_Inc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percentile_inc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_percentile_inc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_permut

Invoke action permut\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/permut.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_permut '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_permut '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_permutationa

Invoke action permutationa\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/permutationa.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_permutationa '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_permutationa '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_phi

Invoke action phi\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/phi.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_phi '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_phi '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pi

Invoke action pi\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/pi.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pi '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_pi '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pmt

Invoke action pmt\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/pmt.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pmt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_pmt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_poisson_dist

Invoke action poisson_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/poisson_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_poisson_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_poisson_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_power

Invoke action power\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/power.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_power '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_power '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ppmt

Invoke action ppmt\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/ppmt.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ppmt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_ppmt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price

Invoke action price\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/price.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_price '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price_disc

Invoke action priceDisc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/priceDisc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price_disc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_price_disc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price_mat

Invoke action priceMat\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/priceMat.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price_mat '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_price_mat '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_product

Invoke action product\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/product.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_product '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_product '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_proper

Invoke action proper\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/proper.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_proper '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_proper '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pv

Invoke action pv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/pv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_pv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quartile_exc

Invoke action quartile_Exc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/quartile_Exc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quartile_exc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_quartile_exc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quartile_inc

Invoke action quartile_Inc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/quartile_Inc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quartile_inc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_quartile_inc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quotient

Invoke action quotient\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/quotient.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quotient '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_quotient '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_radians

Invoke action radians\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/radians.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_radians '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_radians '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rand

Invoke action rand\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/rand.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rand '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_rand '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rand_between

Invoke action randBetween\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/randBetween.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rand_between '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_rand_between '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rank_avg

Invoke action rank_Avg\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/rank_Avg.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rank_avg '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_rank_avg '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rank_eq

Invoke action rank_Eq\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/rank_Eq.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rank_eq '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_rank_eq '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rate

Invoke action rate\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/rate.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rate '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_rate '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_received

Invoke action received\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/received.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_received '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_received '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_replace

Invoke action replace\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/replace.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_replace '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_replace '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_replace_b

Invoke action replaceB\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/replaceB.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_replace_b '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_replace_b '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rept

Invoke action rept\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/rept.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rept '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_rept '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_right

Invoke action right\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/right.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_right '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_right '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rightb

Invoke action rightb\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/rightb.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rightb '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_rightb '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_roman

Invoke action roman\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/roman.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_roman '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_roman '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round

Invoke action round\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/round.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_round '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round_down

Invoke action roundDown\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/roundDown.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round_down '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_round_down '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round_up

Invoke action roundUp\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/roundUp.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round_up '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_round_up '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rows

Invoke action rows\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/rows.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rows '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_rows '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rri

Invoke action rri\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/rri.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rri '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_rri '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sec

Invoke action sec\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sec.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sec '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sec '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sech

Invoke action sech\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sech.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sech '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sech '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_second

Invoke action second\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/second.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_second '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_second '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_series_sum

Invoke action seriesSum\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/seriesSum.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_series_sum '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_series_sum '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sheet

Invoke action sheet\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sheet.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sheet '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sheet '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sheets

Invoke action sheets\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sheets.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sheets '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sheets '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sign

Invoke action sign\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sign.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sign '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sign '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sin

Invoke action sin\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sin.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sin '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sin '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sinh

Invoke action sinh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sinh.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sinh '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sinh '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_skew

Invoke action skew\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/skew.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_skew '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_skew '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_skew_p

Invoke action skew_p\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/skew_p.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_skew_p '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_skew_p '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sln

Invoke action sln\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sln.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sln '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sln '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_small

Invoke action small\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/small.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_small '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_small '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sqrt

Invoke action sqrt\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sqrt.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sqrt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sqrt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sqrt_pi

Invoke action sqrtPi\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sqrtPi.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sqrt_pi '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sqrt_pi '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_a

Invoke action stDevA\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/stDevA.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_a '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_a '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_pa

Invoke action stDevPA\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/stDevPA.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_pa '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_pa '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_p

Invoke action stDev_P\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/stDev_P.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_p '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_p '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_s

Invoke action stDev_S\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/stDev_S.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_s '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_s '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_standardize

Invoke action standardize\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/standardize.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_standardize '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_standardize '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_substitute

Invoke action substitute\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/substitute.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_substitute '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_substitute '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_subtotal

Invoke action subtotal\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/subtotal.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_subtotal '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_subtotal '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum

Invoke action sum\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sum.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_if

Invoke action sumIf\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sumIf.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_if '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_if '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_ifs

Invoke action sumIfs\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sumIfs.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_ifs '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_ifs '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_sq

Invoke action sumSq\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/sumSq.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_sq '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_sq '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_syd

Invoke action syd\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/syd.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_syd '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_syd '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t

Invoke action t\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/t.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_t '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist

Invoke action t_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/t_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist_2_t

Invoke action t_Dist_2T\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/t_Dist_2T.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist_2_t '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist_2_t '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist_rt

Invoke action t_Dist_RT\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/t_Dist_RT.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist_rt '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist_rt '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_inv

Invoke action t_Inv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/t_Inv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_inv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_inv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_inv_2_t

Invoke action t_Inv_2T\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/t_Inv_2T.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_inv_2_t '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_inv_2_t '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tan

Invoke action tan\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/tan.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tan '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_tan '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tanh

Invoke action tanh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/tanh.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tanh '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_tanh '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_eq

Invoke action tbillEq\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/tbillEq.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_eq '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_eq '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_price

Invoke action tbillPrice\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/tbillPrice.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_price '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_price '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_yield

Invoke action tbillYield\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/tbillYield.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_yield '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_yield '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_text

Invoke action text\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/text.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_text '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_text '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_time

Invoke action time\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/time.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_time '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_time '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_timevalue

Invoke action timevalue\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/timevalue.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_timevalue '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_timevalue '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_today

Invoke action today\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/today.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_today '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_today '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trim

Invoke action trim\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/trim.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trim '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_trim '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trim_mean

Invoke action trimMean\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/trimMean.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trim_mean '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_trim_mean '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_true

Invoke action true\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/true.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_true '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_true '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trunc

Invoke action trunc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/trunc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trunc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_trunc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_type

Invoke action type\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/type.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_type '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_type '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_unichar

Invoke action unichar\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/unichar.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_unichar '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_unichar '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_unicode

Invoke action unicode\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/unicode.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_unicode '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_unicode '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_upper

Invoke action upper\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/upper.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_upper '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_upper '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_usdollar

Invoke action usdollar\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/usdollar.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_usdollar '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_usdollar '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_value

Invoke action value\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/value.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_value '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_value '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_a

Invoke action varA\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/varA.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_a '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_a '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_pa

Invoke action varPA\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/varPA.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_pa '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_pa '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_p

Invoke action var_P\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/var_P.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_p '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_p '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_s

Invoke action var_S\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/var_S.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_s '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_s '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_vdb

Invoke action vdb\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/vdb.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_vdb '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_vdb '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_vlookup

Invoke action vlookup\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/vlookup.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_vlookup '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_vlookup '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_week_num

Invoke action weekNum\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/weekNum.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_week_num '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_week_num '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_weekday

Invoke action weekday\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/weekday.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_weekday '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_weekday '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_weibull_dist

Invoke action weibull_Dist\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/weibull_Dist.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_weibull_dist '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_weibull_dist '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_work_day

Invoke action workDay\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/workDay.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_work_day '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_work_day '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_work_day_intl

Invoke action workDay_Intl\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/workDay_Intl.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_work_day_intl '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_work_day_intl '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xirr

Invoke action xirr\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/xirr.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xirr '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_xirr '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xnpv

Invoke action xnpv\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/xnpv.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xnpv '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_xnpv '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xor

Invoke action xor\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/xor.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xor '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_xor '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_year

Invoke action year\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/year.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_year '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_year '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_year_frac

Invoke action yearFrac\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/yearFrac.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_year_frac '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_year_frac '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield

Invoke action yield\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/yield.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield_disc

Invoke action yieldDisc\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/yieldDisc.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield_disc '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield_disc '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield_mat

Invoke action yieldMat\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/yieldMat.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield_mat '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield_mat '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_z_test

Invoke action z_Test\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/functions/z_Test.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_z_test '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_functions_z_test '{"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-excel.microsoft_excel_drives_items_workbook_list_names

Get names from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_list_names '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_list_names '{"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-excel.microsoft_excel_drives_items_workbook_create_names

Create new navigation property to names for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/names.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_create_names '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_create_names '{"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-excel.microsoft_excel_drives_items_workbook_names_get_count_eada

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/$count.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_names_get_count_eada '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_names_get_count_eada '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_add

Invoke action add\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/names/add.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_add '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_add '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_add_formula_local

Invoke action addFormulaLocal\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/names/addFormulaLocal.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_add_formula_local '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_add_formula_local '{"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-excel.microsoft_excel_drives_items_workbook_get_names

Get names from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_get_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_get_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_update_names

Update the navigation property names in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_update_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_update_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_delete_names

Delete navigation property names for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_delete_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_delete_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_names_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_names_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_names_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_names_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_names_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_names_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_names_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_names_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_names_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_names_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_names_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_names_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_names_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_names_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/range()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_names_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_names_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/names/{workbookNamedItem-id}/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_names_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_names_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_list_operations

Get operations from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/operations.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_list_operations '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_list_operations '{"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-excel.microsoft_excel_drives_items_workbook_create_operations

Create new navigation property to operations for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/operations.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_create_operations '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_create_operations '{"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-excel.microsoft_excel_drives_items_workbook_operations_get_count_67f8

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/operations/$count.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_operations_get_count_67f8 '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_operations_get_count_67f8 '{"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-excel.microsoft_excel_drives_items_workbook_get_operations

Get operations from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/operations/{workbookOperation-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_operation_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_get_operations '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_operation_id":"example_workbook_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_get_operations '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_operation_id":"example_workbook_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_update_operations

Update the navigation property operations in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/operations/{workbookOperation-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_operation_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_update_operations '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_operation_id":"example_workbook_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_update_operations '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_operation_id":"example_workbook_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_delete_operations

Delete navigation property operations for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/operations/{workbookOperation-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_operation_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_delete_operations '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_operation_id":"example_workbook_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_delete_operations '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_operation_id":"example_workbook_operation_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_refresh_session

Invoke action refreshSession\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/refreshSession.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_refresh_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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_refresh_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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_session_info_resource

Invoke function sessionInfoResource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/sessionInfoResource(key='{key}').

Read read
Parameters
drive_id, drive_item_id, key, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_session_info_resource '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","key":"example_key","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_session_info_resource '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","key":"example_key","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_table_row_operation_result

Invoke function tableRowOperationResult\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tableRowOperationResult(key='{key}').

Read read
Parameters
drive_id, drive_item_id, key, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_table_row_operation_result '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","key":"example_key","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_table_row_operation_result '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","key":"example_key","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_list_tables

Get tables from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_list_tables '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_list_tables '{"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-excel.microsoft_excel_drives_items_workbook_create_tables

Create new navigation property to tables for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_create_tables '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_create_tables '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_add

Invoke action add\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/add.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_add '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_add '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_count

Invoke function count\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/count().

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_count '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_count '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at

Invoke function itemAt\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index}).

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_clear_filters

Invoke action clearFilters\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/clearFilters.

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_clear_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_clear_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_list_columns

Get columns from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/columns.

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_list_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_item_at_list_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_create_columns

Create new navigation property to columns for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/columns.

Write write
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_create_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_item_at_create_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_convert_to_range

Invoke action convertToRange\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/convertToRange.

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_convert_to_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_convert_to_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_data_body_range

Invoke function dataBodyRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/dataBodyRange().

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_header_row_range

Invoke function headerRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/headerRowRange().

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/range().

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_reapply_filters

Invoke action reapplyFilters\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/reapplyFilters.

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_reapply_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_reapply_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_list_rows

Get rows from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/rows.

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_list_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_item_at_list_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_create_rows

Create new navigation property to rows for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/rows.

Write write
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_create_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_item_at_create_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/sort.

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_item_at_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/sort.

Write write
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_item_at_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/sort.

Write write
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_item_at_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_total_row_range

Invoke function totalRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/totalRowRange().

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/itemAt(index={index})/worksheet.

Read read
Parameters
drive_id, drive_item_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_item_at_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_get_tables

Get tables from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_get_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_get_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_update_tables

Update the navigation property tables in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_update_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_update_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_delete_tables

Delete navigation property tables for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_delete_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_delete_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_clear_filters

Invoke action clearFilters\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/clearFilters.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_clear_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_clear_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_list_columns

Get columns from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_list_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_list_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_create_columns

Create new navigation property to columns for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_create_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_create_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_add

Invoke action add\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/add.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_count

Invoke function count\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/count().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at

Invoke function itemAt\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/itemAt(index={index}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_data_body_range

Invoke function dataBodyRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/itemAt(index={index})/dataBodyRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_get_filter

Get filter from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/itemAt(index={index})/filter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_get_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_item_at_get_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_update_filter

Update the navigation property filter in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/itemAt(index={index})/filter.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_update_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_item_at_update_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_delete_filter

Delete navigation property filter for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/itemAt(index={index})/filter.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_delete_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_item_at_delete_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_header_row_range

Invoke function headerRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/itemAt(index={index})/headerRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/itemAt(index={index})/range().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_total_row_range

Invoke function totalRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/itemAt(index={index})/totalRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_columns

Get columns from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_get_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_columns

Update the navigation property columns in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_update_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_columns

Delete navigation property columns for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_delete_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range

Invoke function dataBodyRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_data_body_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_data_body_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_data_body_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_data_body_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_get_filter

Get filter from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_get_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_get_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_update_filter

Update the navigation property filter in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_update_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_update_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_delete_filter

Delete navigation property filter for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_delete_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_delete_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply

Invoke action apply\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/apply.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_items_filter

Invoke action applyBottomItemsFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyBottomItemsFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_items_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_items_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_percent_filter

Invoke action applyBottomPercentFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyBottomPercentFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_percent_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_percent_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_cell_color_filter

Invoke action applyCellColorFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyCellColorFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_cell_color_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_cell_color_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_custom_filter

Invoke action applyCustomFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyCustomFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_custom_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_custom_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_dynamic_filter

Invoke action applyDynamicFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyDynamicFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_dynamic_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_dynamic_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_font_color_filter

Invoke action applyFontColorFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyFontColorFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_font_color_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_font_color_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_icon_filter

Invoke action applyIconFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyIconFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_icon_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_icon_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_top_items_filter

Invoke action applyTopItemsFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyTopItemsFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_top_items_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_top_items_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_top_percent_filter

Invoke action applyTopPercentFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyTopPercentFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_top_percent_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_top_percent_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_values_filter

Invoke action applyValuesFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyValuesFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_values_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_values_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range

Invoke function headerRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_header_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_header_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_header_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_header_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range

Invoke function totalRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_total_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_total_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_total_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_total_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_convert_to_range

Invoke action convertToRange\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/convertToRange.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_convert_to_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_convert_to_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range

Invoke function dataBodyRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_data_body_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_data_body_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_data_body_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_data_body_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_data_body_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_data_body_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/dataBodyRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_data_body_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range

Invoke function headerRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_header_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_header_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_header_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_header_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_header_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_header_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/headerRowRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_header_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/range()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_reapply_filters

Invoke action reapplyFilters\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/reapplyFilters.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_reapply_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_reapply_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_list_rows

Get rows from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_list_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_list_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_create_rows

Create new navigation property to rows for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_create_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_create_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_add

Invoke action add\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/add.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_count

Invoke function count\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/count().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_item_at

Invoke function itemAt\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/itemAt(index={index}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_item_at_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/itemAt(index={index})/range().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_rows

Get rows from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_get_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_rows

Update the navigation property rows in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_update_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_rows

Delete navigation property rows for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_delete_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_rows_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_rows_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_rows_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_rows_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_rows_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_rows_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_rows_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_apply

Invoke action apply\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/sort/apply.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_apply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_apply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/sort/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_reapply

Invoke action reapply\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/sort/reapply.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_reapply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_reapply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range

Invoke function totalRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_total_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_total_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_total_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_total_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_total_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_total_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/totalRowRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_total_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/tables/{workbookTable-id}/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_tables_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_list_worksheets

Get worksheets from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_list_worksheets '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_list_worksheets '{"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-excel.microsoft_excel_drives_items_workbook_create_worksheets

Create new navigation property to worksheets for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets.

Write write
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_create_worksheets '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_create_worksheets '{"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-excel.microsoft_excel_drives_items_workbook_worksheets_get_count_98c0

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/$count.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_count_98c0 '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_get_count_98c0 '{"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-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_add

Invoke action add\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/add.

Read read
Parameters
drive_id, drive_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_add '{"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
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_add '{"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-excel.microsoft_excel_drives_items_workbook_get_worksheets

Get worksheets from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_get_worksheets '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_get_worksheets '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_update_worksheets

Update the navigation property worksheets in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_update_worksheets '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_update_worksheets '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_delete_worksheets

Delete navigation property worksheets for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_delete_worksheets '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_delete_worksheets '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/column(column={column1}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, column1, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","column1":"example_column1","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","column1":"example_column1","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_cell_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_cell_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_cell_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/row(row={row1}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, row1, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","row1":"example_row1","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","row1":"example_row1","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_cell_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_cell_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_cell_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/cell(row={row},column={column})/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_cell_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_charts

Get charts from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_charts '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_list_charts '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_charts

Create new navigation property to charts for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_charts '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_create_charts '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_add

Invoke action add\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/add.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_count

Invoke function count\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/count().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item

Invoke function item\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_axes

Get axes from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/axes.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_get_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_axes

Update the navigation property axes in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/axes.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_update_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_axes

Delete navigation property axes for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/axes.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_data_labels

Get dataLabels from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/dataLabels.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_get_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_data_labels

Update the navigation property dataLabels in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/dataLabels.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_update_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_data_labels

Delete navigation property dataLabels for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/dataLabels.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_8f13

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/image().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_8f13 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_8f13 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_9795

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/image(width={width}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, width, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_9795 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","width":"example_width","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_9795 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","width":"example_width","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_664c

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/image(width={width},height={height}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, width, height, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_664c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","width":"example_width","height":"example_height","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_664c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","width":"example_width","height":"example_height","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_4f04

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/image(width={width},height={height},fittingMode='{fittingMode}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, width, height, fitting_mode, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_4f04 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","width":"example_width","height":"example_height","fitting_mode":"example_fitting_mode","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_4f04 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","width":"example_width","height":"example_height","fitting_mode":"example_fitting_mode","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_legend

Get legend from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/legend.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_get_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_legend

Update the navigation property legend in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/legend.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_update_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_legend

Delete navigation property legend for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/legend.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_list_series

Get series from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/series.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_list_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_list_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_create_series

Create new navigation property to series for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/series.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_create_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_create_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_set_data

Invoke action setData\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/setData.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_set_data '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_set_data '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_set_position

Invoke action setPosition\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/setPosition.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_set_position '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_set_position '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_title

Get title from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/title.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_title

Update the navigation property title in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_title

Delete navigation property title for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/item(name='{name}')/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, name, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","name":"example_name","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at

Invoke function itemAt\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_axes

Get axes from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/axes.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_axes

Update the navigation property axes in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/axes.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_axes

Delete navigation property axes for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/axes.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_data_labels

Get dataLabels from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/dataLabels.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_data_labels

Update the navigation property dataLabels in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/dataLabels.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_data_labels

Delete navigation property dataLabels for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/dataLabels.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_8f13

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/image().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_8f13 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_8f13 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_9795

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/image(width={width}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, width, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_9795 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","width":"example_width","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_9795 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","width":"example_width","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_664c

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/image(width={width},height={height}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, width, height, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_664c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","width":"example_width","height":"example_height","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_664c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","width":"example_width","height":"example_height","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_4f04

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/image(width={width},height={height},fittingMode='{fittingMode}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, width, height, fitting_mode, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_4f04 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","width":"example_width","height":"example_height","fitting_mode":"example_fitting_mode","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_4f04 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","width":"example_width","height":"example_height","fitting_mode":"example_fitting_mode","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_legend

Get legend from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/legend.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_legend

Update the navigation property legend in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/legend.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_legend

Delete navigation property legend for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/legend.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_list_series

Get series from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/series.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_list_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_list_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_create_series

Create new navigation property to series for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/series.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_create_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_create_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_set_data

Invoke action setData\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/setData.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_set_data '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_set_data '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_set_position

Invoke action setPosition\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/setPosition.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_set_position '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_set_position '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_title

Get title from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/title.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_title

Update the navigation property title in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_title

Delete navigation property title for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/itemAt(index={index})/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_charts

Get charts from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_charts '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_get_charts '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_charts

Update the navigation property charts in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_charts '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_update_charts '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_charts

Delete navigation property charts for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_charts '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_delete_charts '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_axes

Get axes from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_get_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_axes

Update the navigation property axes in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_update_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_axes

Delete navigation property axes for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_delete_axes '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_category_axis

Get categoryAxis from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_category_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_category_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_category_axis

Update the navigation property categoryAxis in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_category_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_category_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_category_axis

Delete navigation property categoryAxis for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_category_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_category_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_get_font

Get font from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/format/font.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_update_font

Update the navigation property font in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_delete_font

Delete navigation property font for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_get_line

Get line from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/format/line.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_update_line

Update the navigation property line in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_delete_line

Delete navigation property line for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_format_line_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/format/line/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_major_gridlines

Get majorGridlines from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/majorGridlines.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_major_gridlines

Update the navigation property majorGridlines in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/majorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_major_gridlines

Delete navigation property majorGridlines for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/majorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/majorGridlines/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/majorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/majorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_get_line

Get line from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/majorGridlines/format/line.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_update_line

Update the navigation property line in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/majorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_delete_line

Delete navigation property line for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/majorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_major_gridlines_format_line_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/majorGridlines/format/line/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_major_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_major_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_minor_gridlines

Get minorGridlines from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/minorGridlines.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_minor_gridlines

Update the navigation property minorGridlines in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/minorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_minor_gridlines

Delete navigation property minorGridlines for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/minorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/minorGridlines/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/minorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/minorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_get_line

Get line from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/minorGridlines/format/line.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_update_line

Update the navigation property line in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/minorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_delete_line

Delete navigation property line for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/minorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_minor_gridlines_format_line_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/minorGridlines/format/line/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_minor_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_minor_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_title

Get title from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/title.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_title

Update the navigation property title in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_title

Delete navigation property title for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/title/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/title/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/title/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_get_font

Get font from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/title/format/font.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_update_font

Update the navigation property font in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/title/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_delete_font

Delete navigation property font for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/categoryAxis/title/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_series_axis

Get seriesAxis from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_series_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_series_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_series_axis

Update the navigation property seriesAxis in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_series_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_series_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_series_axis

Delete navigation property seriesAxis for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_series_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_series_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_get_font

Get font from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/format/font.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_update_font

Update the navigation property font in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_delete_font

Delete navigation property font for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_get_line

Get line from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/format/line.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_update_line

Update the navigation property line in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_delete_line

Delete navigation property line for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_format_line_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/format/line/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_major_gridlines

Get majorGridlines from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/majorGridlines.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_major_gridlines

Update the navigation property majorGridlines in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/majorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_major_gridlines

Delete navigation property majorGridlines for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/majorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/majorGridlines/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/majorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/majorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_get_line

Get line from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/majorGridlines/format/line.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_update_line

Update the navigation property line in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/majorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_delete_line

Delete navigation property line for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/majorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_major_gridlines_format_line_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/majorGridlines/format/line/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_major_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_major_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_minor_gridlines

Get minorGridlines from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/minorGridlines.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_minor_gridlines

Update the navigation property minorGridlines in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/minorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_minor_gridlines

Delete navigation property minorGridlines for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/minorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/minorGridlines/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/minorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/minorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_get_line

Get line from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/minorGridlines/format/line.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_update_line

Update the navigation property line in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/minorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_delete_line

Delete navigation property line for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/minorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_minor_gridlines_format_line_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/minorGridlines/format/line/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_minor_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_minor_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_title

Get title from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/title.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_title

Update the navigation property title in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_title

Delete navigation property title for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/title/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/title/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/title/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_get_font

Get font from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/title/format/font.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_update_font

Update the navigation property font in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/title/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_delete_font

Delete navigation property font for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/seriesAxis/title/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_value_axis

Get valueAxis from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_value_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_value_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_value_axis

Update the navigation property valueAxis in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_value_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_value_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_value_axis

Delete navigation property valueAxis for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_value_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_value_axis '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_get_font

Get font from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/format/font.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_update_font

Update the navigation property font in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_delete_font

Delete navigation property font for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_get_line

Get line from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/format/line.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_update_line

Update the navigation property line in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_delete_line

Delete navigation property line for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_format_line_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/format/line/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_major_gridlines

Get majorGridlines from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/majorGridlines.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_major_gridlines

Update the navigation property majorGridlines in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/majorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_major_gridlines

Delete navigation property majorGridlines for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/majorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_major_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/majorGridlines/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/majorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/majorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_get_line

Get line from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/majorGridlines/format/line.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_update_line

Update the navigation property line in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/majorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_delete_line

Delete navigation property line for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/majorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_major_gridlines_format_line_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/majorGridlines/format/line/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_major_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_major_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_minor_gridlines

Get minorGridlines from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/minorGridlines.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_minor_gridlines

Update the navigation property minorGridlines in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/minorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_minor_gridlines

Delete navigation property minorGridlines for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/minorGridlines.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_minor_gridlines '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/minorGridlines/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/minorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/minorGridlines/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_get_line

Get line from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/minorGridlines/format/line.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_update_line

Update the navigation property line in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/minorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_delete_line

Delete navigation property line for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/minorGridlines/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_minor_gridlines_format_line_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/minorGridlines/format/line/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_minor_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_minor_gridlines_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_title

Get title from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/title.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_title

Update the navigation property title in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_title

Delete navigation property title for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/title/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/title/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/title/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_get_font

Get font from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/title/format/font.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_update_font

Update the navigation property font in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/title/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_delete_font

Delete navigation property font for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/axes/valueAxis/title/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_data_labels

Get dataLabels from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_get_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_data_labels

Update the navigation property dataLabels in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_update_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_data_labels

Delete navigation property dataLabels for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_delete_data_labels '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_get_fill

Get fill from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels/format/fill.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_update_fill

Update the navigation property fill in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_delete_fill

Delete navigation property fill for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_data_labels_format_fill_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels/format/fill/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_data_labels_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_data_labels_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_data_labels_format_fill_set_solid_color

Invoke action setSolidColor\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels/format/fill/setSolidColor.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_data_labels_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_data_labels_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_get_font

Get font from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels/format/font.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_update_font

Update the navigation property font in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_delete_font

Delete navigation property font for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/dataLabels/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_get_fill

Get fill from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/format/fill.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_update_fill

Update the navigation property fill in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_delete_fill

Delete navigation property fill for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_format_fill_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/format/fill/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_format_fill_set_solid_color

Invoke action setSolidColor\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/format/fill/setSolidColor.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_get_font

Get font from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/format/font.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_update_font

Update the navigation property font in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_delete_font

Delete navigation property font for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_8f13

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/image().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_8f13 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_8f13 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_9795

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/image(width={width}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, width, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_9795 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","width":"example_width","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_9795 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","width":"example_width","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_664c

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/image(width={width},height={height}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, width, height, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_664c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","width":"example_width","height":"example_height","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_664c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","width":"example_width","height":"example_height","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_4f04

Invoke function image\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/image(width={width},height={height},fittingMode='{fittingMode}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, width, height, fitting_mode, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_4f04 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","width":"example_width","height":"example_height","fitting_mode":"example_fitting_mode","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_4f04 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","width":"example_width","height":"example_height","fitting_mode":"example_fitting_mode","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_legend

Get legend from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_get_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_legend

Update the navigation property legend in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_update_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_legend

Delete navigation property legend for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_delete_legend '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_legend_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_legend_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_legend_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_get_fill

Get fill from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend/format/fill.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_update_fill

Update the navigation property fill in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_delete_fill

Delete navigation property fill for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_legend_format_fill_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend/format/fill/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_legend_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_legend_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_legend_format_fill_set_solid_color

Invoke action setSolidColor\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend/format/fill/setSolidColor.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_legend_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_legend_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_get_font

Get font from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend/format/font.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_update_font

Update the navigation property font in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_delete_font

Delete navigation property font for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/legend/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_list_series

Get series from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_list_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_list_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_create_series

Create new navigation property to series for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_create_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_create_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_count

Invoke function count\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/count().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_item_at

Invoke function itemAt\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/itemAt(index={index}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/itemAt(index={index})/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/itemAt(index={index})/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/itemAt(index={index})/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_list_points

Get points from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/itemAt(index={index})/points.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_list_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_list_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_create_points

Create new navigation property to points for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/itemAt(index={index})/points.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_create_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_create_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_series

Get series from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_get_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_series

Update the navigation property series in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_update_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_series

Delete navigation property series for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_delete_series '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_get_fill

Get fill from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format/fill.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_update_fill

Update the navigation property fill in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_delete_fill

Delete navigation property fill for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_fill_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format/fill/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_fill_set_solid_color

Invoke action setSolidColor\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format/fill/setSolidColor.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_get_line

Get line from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format/line.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_format_get_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_update_line

Update the navigation property line in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_format_update_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_delete_line

Delete navigation property line for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format/line.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_format_delete_line '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_line_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/format/line/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_line_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_list_points

Get points from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_list_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_list_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_create_points

Create new navigation property to points for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_create_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_create_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_count

Invoke function count\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/count().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_item_at

Invoke function itemAt\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/itemAt(index={index}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","index":"example_index","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","index":"example_index","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/itemAt(index={index})/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","index":"example_index","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","index":"example_index","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/itemAt(index={index})/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","index":"example_index","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","index":"example_index","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/itemAt(index={index})/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","index":"example_index","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","index":"example_index","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_get_points

Get points from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/{workbookChartPoint-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, workbook_chart_point_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_get_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_get_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_update_points

Update the navigation property points in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/{workbookChartPoint-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, workbook_chart_point_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_update_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_update_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_delete_points

Delete navigation property points for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/{workbookChartPoint-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, workbook_chart_point_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_delete_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_delete_points '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/{workbookChartPoint-id}/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, workbook_chart_point_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_points_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/{workbookChartPoint-id}/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, workbook_chart_point_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_points_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/{workbookChartPoint-id}/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, workbook_chart_point_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_points_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_get_fill

Get fill from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/{workbookChartPoint-id}/format/fill.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, workbook_chart_point_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_update_fill

Update the navigation property fill in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/{workbookChartPoint-id}/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, workbook_chart_point_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_delete_fill

Delete navigation property fill for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/{workbookChartPoint-id}/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, workbook_chart_point_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_workbook_chart_point_format_fill_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/{workbookChartPoint-id}/format/fill/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, workbook_chart_point_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_workbook_chart_point_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_workbook_chart_point_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_workbook_chart_point_format_fill_set_solid_color

Invoke action setSolidColor\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/series/{workbookChartSeries-id}/points/{workbookChartPoint-id}/format/fill/setSolidColor.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, workbook_chart_series_id, workbook_chart_point_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_workbook_chart_point_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_workbook_chart_point_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","workbook_chart_series_id":"example_workbook_chart_series_id","workbook_chart_point_id":"example_workbook_chart_point_id","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_set_data

Invoke action setData\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/setData.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_set_data '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_set_data '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_set_position

Invoke action setPosition\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/setPosition.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_set_position '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_set_position '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_title

Get title from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_get_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_title

Update the navigation property title in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_update_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_title

Delete navigation property title for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_delete_title '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_title_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_title_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_title_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_get_fill

Get fill from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title/format/fill.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_title_format_get_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_update_fill

Update the navigation property fill in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_title_format_update_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_delete_fill

Delete navigation property fill for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title/format/fill.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_title_format_delete_fill '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_title_format_fill_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title/format/fill/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_title_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_title_format_fill_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_title_format_fill_set_solid_color

Invoke action setSolidColor\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title/format/fill/setSolidColor.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_title_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_title_format_fill_set_solid_color '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_get_font

Get font from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title/format/font.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_title_format_get_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_update_font

Update the navigation property font in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_title_format_update_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_delete_font

Delete navigation property font for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/title/format/font.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_title_format_delete_font '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/charts/{workbookChart-id}/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_chart_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_charts_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_chart_id":"example_workbook_chart_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_names

Get names from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_list_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_names

Create new navigation property to names for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_create_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_get_count_b666

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/$count.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_get_count_b666 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_names_get_count_b666 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_add

Invoke action add\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/add.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_add_formula_local

Invoke action addFormulaLocal\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/addFormulaLocal.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_add_formula_local '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_add_formula_local '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_names

Get names from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_get_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_names

Update the navigation property names in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_update_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_names

Delete navigation property names for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_delete_names '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_names_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_names_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_names_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_names_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_names_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_names_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/range()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_names_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/names/{workbookNamedItem-id}/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_named_item_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_names_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_named_item_id":"example_workbook_named_item_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_pivot_tables

Get pivotTables from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/pivotTables.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_pivot_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_list_pivot_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_pivot_tables

Create new navigation property to pivotTables for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/pivotTables.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_pivot_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_create_pivot_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_pivot_tables_get_count_d7ec

Get the number of the resource\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/pivotTables/$count.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_pivot_tables_get_count_d7ec '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_pivot_tables_get_count_d7ec '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_pivot_tables_refresh_all

Invoke action refreshAll\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/pivotTables/refreshAll.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_pivot_tables_refresh_all '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_pivot_tables_refresh_all '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_pivot_tables

Get pivotTables from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/pivotTables/{workbookPivotTable-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_pivot_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_pivot_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_pivot_table_id":"example_workbook_pivot_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_get_pivot_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_pivot_table_id":"example_workbook_pivot_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_pivot_tables

Update the navigation property pivotTables in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/pivotTables/{workbookPivotTable-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_pivot_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_pivot_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_pivot_table_id":"example_workbook_pivot_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_update_pivot_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_pivot_table_id":"example_workbook_pivot_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_pivot_tables

Delete navigation property pivotTables for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/pivotTables/{workbookPivotTable-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_pivot_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_pivot_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_pivot_table_id":"example_workbook_pivot_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_delete_pivot_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_pivot_table_id":"example_workbook_pivot_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_pivot_tables_workbook_pivot_table_refresh

Invoke action refresh\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/pivotTables/{workbookPivotTable-id}/refresh.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_pivot_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_pivot_tables_workbook_pivot_table_refresh '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_pivot_table_id":"example_workbook_pivot_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_pivot_tables_workbook_pivot_table_refresh '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_pivot_table_id":"example_workbook_pivot_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_pivot_tables_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/pivotTables/{workbookPivotTable-id}/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_pivot_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_pivot_tables_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_pivot_table_id":"example_workbook_pivot_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_pivot_tables_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_pivot_table_id":"example_workbook_pivot_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_protection

Get protection from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/protection.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_protection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_get_protection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_protection

Update the navigation property protection in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/protection.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_protection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_update_protection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_protection

Delete navigation property protection for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/protection.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_protection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_delete_protection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_protection_protect

Invoke action protect\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/protection/protect.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_protection_protect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_protection_protect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_protection_unprotect

Invoke action unprotect\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/protection/unprotect.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_protection_unprotect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_protection_unprotect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bc5e

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bounding_rect_bc5e

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bounding_rect_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bounding_rect_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_cell_bc5e

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_cell_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_cell_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_clear_bc5e

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_clear_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_clear_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_column_bc5e

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_column_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_column_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_f819

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_f819 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_f819 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_7946

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_7946 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_7946 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_3678

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_3678 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_3678 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_e50d

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_e50d '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_e50d '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_delete_bc5e

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/delete.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_delete_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_delete_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_column_bc5e

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_column_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_column_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_row_bc5e

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_row_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_row_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_format_bc5e

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_format_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_get_format_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_format_bc5e

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_format_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_update_format_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_format_bc5e

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_format_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_delete_format_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_insert_bc5e

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_insert_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_insert_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_intersection_bc5e

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_intersection_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_intersection_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_cell_bc5e

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_cell_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_cell_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_column_bc5e

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_column_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_column_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_row_bc5e

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_row_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_row_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_merge_bc5e

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/merge.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_merge_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_merge_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_offset_range_bc5e

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_offset_range_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_offset_range_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_resized_range_bc5e

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_resized_range_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_resized_range_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_row_bc5e

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_row_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_row_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_ba41

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_ba41 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_ba41 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_c39a

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_c39a '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_c39a '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_2023

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_2023 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_2023 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_f542

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_f542 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_f542 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_sort_bc5e

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_sort_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_get_sort_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_sort_bc5e

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_sort_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_update_sort_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_sort_bc5e

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_sort_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_delete_sort_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_unmerge_bc5e

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_unmerge_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_unmerge_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_6c80

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_6c80 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_6c80 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_2c25

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_2c25 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_2c25 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_visible_view_bc5e

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_visible_view_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_visible_view_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_worksheet_bc5e

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_worksheet_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_get_worksheet_bc5e '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_b0fa

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bounding_rect_b0fa

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bounding_rect_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bounding_rect_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_cell_b0fa

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_cell_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_cell_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_clear_b0fa

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_clear_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_clear_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_column_b0fa

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_column_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_column_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_755b

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_755b '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_755b '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_fdc3

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_fdc3 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_fdc3 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_b68b

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_b68b '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_b68b '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_b752

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_b752 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_b752 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_delete_b0fa

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/delete.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_delete_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_delete_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_column_b0fa

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_column_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_column_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_row_b0fa

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_row_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_row_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_format_b0fa

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_format_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_get_format_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_format_b0fa

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_format_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_update_format_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_format_b0fa

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_format_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_delete_format_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_insert_b0fa

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_insert_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_insert_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_intersection_b0fa

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_intersection_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_intersection_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_cell_b0fa

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_cell_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_cell_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_column_b0fa

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_column_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_column_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_row_b0fa

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_row_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_row_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_merge_b0fa

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/merge.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_merge_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_merge_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_offset_range_b0fa

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_offset_range_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_offset_range_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_resized_range_b0fa

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_resized_range_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_resized_range_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_row_b0fa

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_row_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_row_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_ca9f

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_ca9f '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_ca9f '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_110d

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_110d '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_110d '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_7dec

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_7dec '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_7dec '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_7d0c

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_7d0c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_7d0c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_sort_b0fa

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_sort_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_get_sort_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_sort_b0fa

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_sort_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_update_sort_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_sort_b0fa

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_sort_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_delete_sort_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_unmerge_b0fa

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_unmerge_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_unmerge_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_8c82

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_8c82 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_8c82 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_e935

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_e935 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_e935 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_visible_view_b0fa

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_visible_view_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_visible_view_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_worksheet_b0fa

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/range(address='{address}')/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, address, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_worksheet_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_range_get_worksheet_b0fa '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","address":"example_address","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_tables

Get tables from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_list_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_tables

Create new navigation property to tables for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_create_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_add

Invoke action add\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/add.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_count

Invoke function count\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/count().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at

Invoke function itemAt\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_clear_filters

Invoke action clearFilters\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/clearFilters.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_clear_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_clear_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_list_columns

Get columns from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/columns.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_list_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_item_at_list_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_create_columns

Create new navigation property to columns for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/columns.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_create_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_item_at_create_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_convert_to_range

Invoke action convertToRange\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/convertToRange.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_convert_to_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_convert_to_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_data_body_range

Invoke function dataBodyRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/dataBodyRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_header_row_range

Invoke function headerRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/headerRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/range().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_reapply_filters

Invoke action reapplyFilters\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/reapplyFilters.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_reapply_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_reapply_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_list_rows

Get rows from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/rows.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_list_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_item_at_list_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_create_rows

Create new navigation property to rows for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/rows.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_create_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_item_at_create_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_item_at_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_item_at_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_item_at_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_total_row_range

Invoke function totalRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/totalRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/itemAt(index={index})/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_item_at_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_tables

Get tables from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_get_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_tables

Update the navigation property tables in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_update_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_tables

Delete navigation property tables for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_delete_tables '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_clear_filters

Invoke action clearFilters\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/clearFilters.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_clear_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_clear_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_list_columns

Get columns from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_list_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_list_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_create_columns

Create new navigation property to columns for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_create_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_create_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_add

Invoke action add\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/add.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_count

Invoke function count\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/count().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at

Invoke function itemAt\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/itemAt(index={index}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_data_body_range

Invoke function dataBodyRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/itemAt(index={index})/dataBodyRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_get_filter

Get filter from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/itemAt(index={index})/filter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_get_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_get_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_update_filter

Update the navigation property filter in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/itemAt(index={index})/filter.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_update_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_update_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_delete_filter

Delete navigation property filter for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/itemAt(index={index})/filter.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_delete_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_delete_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_header_row_range

Invoke function headerRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/itemAt(index={index})/headerRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/itemAt(index={index})/range().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_total_row_range

Invoke function totalRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/itemAt(index={index})/totalRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_columns

Get columns from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_get_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_columns

Update the navigation property columns in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_update_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_columns

Delete navigation property columns for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_delete_columns '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range

Invoke function dataBodyRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/dataBodyRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_get_filter

Get filter from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_get_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_get_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_update_filter

Update the navigation property filter in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_update_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_update_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_delete_filter

Delete navigation property filter for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_delete_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_delete_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply

Invoke action apply\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/apply.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_items_filter

Invoke action applyBottomItemsFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyBottomItemsFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_items_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_items_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_percent_filter

Invoke action applyBottomPercentFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyBottomPercentFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_percent_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_percent_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_cell_color_filter

Invoke action applyCellColorFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyCellColorFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_cell_color_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_cell_color_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_custom_filter

Invoke action applyCustomFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyCustomFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_custom_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_custom_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_dynamic_filter

Invoke action applyDynamicFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyDynamicFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_dynamic_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_dynamic_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_font_color_filter

Invoke action applyFontColorFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyFontColorFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_font_color_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_font_color_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_icon_filter

Invoke action applyIconFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyIconFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_icon_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_icon_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_top_items_filter

Invoke action applyTopItemsFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyTopItemsFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_top_items_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_top_items_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_top_percent_filter

Invoke action applyTopPercentFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyTopPercentFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_top_percent_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_top_percent_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_values_filter

Invoke action applyValuesFilter\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/applyValuesFilter.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_values_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_values_filter '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/filter/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range

Invoke function headerRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/headerRowRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/range()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range

Invoke function totalRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","column":"example_column","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","row":"example_row","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/columns/{workbookTableColumn-id}/totalRowRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_column_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_column_id":"example_workbook_table_column_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_convert_to_range

Invoke action convertToRange\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/convertToRange.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_convert_to_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_convert_to_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range

Invoke function dataBodyRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/dataBodyRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range

Invoke function headerRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/headerRowRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/range()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_reapply_filters

Invoke action reapplyFilters\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/reapplyFilters.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_reapply_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_reapply_filters '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_list_rows

Get rows from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_list_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_list_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_create_rows

Create new navigation property to rows for drives\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_create_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_create_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_add

Invoke action add\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/add.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_add '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_count

Invoke function count\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/count().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_count '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_item_at

Invoke function itemAt\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/itemAt(index={index}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_item_at '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_item_at_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/itemAt(index={index})/range().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, index, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_item_at_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","index":"example_index","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_rows

Get rows from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_get_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_rows

Update the navigation property rows in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_update_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_rows

Delete navigation property rows for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_delete_rows '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range

Invoke function range\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row":"example_row","column":"example_column","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row":"example_row","column":"example_column","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","another_range":"example_another_range","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row":"example_row","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","row":"example_row","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","count":true,"top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","values_only":"example_values_only","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/rows/{workbookTableRow-id}/range()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, workbook_table_row_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","workbook_table_row_id":"example_workbook_table_row_id","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_apply

Invoke action apply\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/sort/apply.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_apply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_apply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/sort/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_reapply

Invoke action reapply\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/sort/reapply.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_reapply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_reapply '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range

Invoke function totalRowRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_bounding_rect

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_bounding_rect '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_cell

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_clear

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_clear '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_column

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_after_43bb

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_after_43bb '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_after_0669

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_after_0669 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_before_b5c5

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_before_b5c5 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_before_b7c6

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_before_b7c6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_delete

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/delete.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_delete '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_entire_column

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_entire_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_entire_row

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_entire_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_format

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_update_format

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_update_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_delete_format

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_delete_format '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_insert

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_insert '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_intersection

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_intersection '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_cell

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_cell '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_column

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_column '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_row

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_merge

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/merge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_merge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_offset_range

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_offset_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_resized_range

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_resized_range '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_row

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_row '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_above_80e1

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_above_80e1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_above_d2c7

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_above_d2c7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_below_2035

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_below_2035 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_below_cfc7

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_below_cfc7 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_sort

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_update_sort

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_update_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_delete_sort

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_delete_sort '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_unmerge

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_unmerge '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_visible_view

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_visible_view '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/totalRowRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_worksheet

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/tables/{workbookTable-id}/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, workbook_table_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_tables_get_worksheet '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","workbook_table_id":"example_workbook_table_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_5ff6

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_bounding_rect_5ff6

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_bounding_rect_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_bounding_rect_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_cell_5ff6

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_cell_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_cell_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_clear_5ff6

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_clear_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_clear_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_column_5ff6

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_column_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_column_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_01cd

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_01cd '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_01cd '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_cb70

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_cb70 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_cb70 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_2c44

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_2c44 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_2c44 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_f995

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_f995 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_f995 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_delete_5ff6

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/delete.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_delete_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_delete_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_column_5ff6

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_column_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_column_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_row_5ff6

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_row_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_row_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_format_5ff6

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_format_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_get_format_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_format_5ff6

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_format_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_update_format_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_format_5ff6

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_format_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_delete_format_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_insert_5ff6

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_insert_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_insert_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_intersection_5ff6

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_intersection_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_intersection_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_cell_5ff6

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_cell_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_cell_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_column_5ff6

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_column_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_column_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_row_5ff6

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_row_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_row_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_merge_5ff6

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/merge.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_merge_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_merge_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_offset_range_5ff6

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_offset_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_offset_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_resized_range_5ff6

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_resized_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_resized_range_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_row_5ff6

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_row_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_row_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_4e71

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_4e71 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_4e71 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_b3a9

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_b3a9 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_b3a9 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_0a40

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_0a40 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_0a40 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_340c

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_340c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_340c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","count":true,"top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_sort_5ff6

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_sort_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_get_sort_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_sort_5ff6

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_sort_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_update_sort_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_sort_5ff6

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_sort_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_delete_sort_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_unmerge_5ff6

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_unmerge_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_unmerge_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_visible_view_5ff6

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_visible_view_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_visible_view_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_worksheet_5ff6

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange()/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_worksheet_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_get_worksheet_5ff6 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter","orderby":"example_orderby"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_63c8

Invoke function usedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_bounding_rect_63c8

Invoke function boundingRect\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/boundingRect(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_bounding_rect_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_bounding_rect_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_cell_63c8

Invoke function cell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/cell(row={row},column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, row, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_cell_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_cell_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","row":"example_row","column":"example_column","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_clear_63c8

Invoke action clear\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/clear.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_clear_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_clear_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_column_63c8

Invoke function column\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/column(column={column}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, column, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_column_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_column_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","column":"example_column","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_886c

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/columnsAfter().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_886c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_886c '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_6148

Invoke function columnsAfter\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/columnsAfter(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_6148 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_6148 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_22a9

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/columnsBefore().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_22a9 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_22a9 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_a137

Invoke function columnsBefore\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/columnsBefore(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_a137 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_a137 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_delete_63c8

Invoke action delete\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/delete.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_delete_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_delete_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_column_63c8

Invoke function entireColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/entireColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_column_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_column_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_row_63c8

Invoke function entireRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/entireRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_row_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_row_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_format_63c8

Get format from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/format.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_format_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_get_format_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_format_63c8

Update the navigation property format in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_format_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_update_format_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_format_63c8

Delete navigation property format for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/format.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_format_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_delete_format_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_insert_63c8

Invoke action insert\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/insert.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_insert_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_insert_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_intersection_63c8

Invoke function intersection\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/intersection(anotherRange='{anotherRange}').

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, another_range, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_intersection_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_intersection_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","another_range":"example_another_range","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_cell_63c8

Invoke function lastCell\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/lastCell().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_cell_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_cell_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_column_63c8

Invoke function lastColumn\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/lastColumn().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_column_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_column_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_row_63c8

Invoke function lastRow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/lastRow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_row_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_row_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_merge_63c8

Invoke action merge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/merge.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_merge_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_merge_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_offset_range_63c8

Invoke function offsetRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/offsetRange(rowOffset={rowOffset},columnOffset={columnOffset}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, row_offset, column_offset, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_offset_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_offset_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","row_offset":"example_row_offset","column_offset":"example_column_offset","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_resized_range_63c8

Invoke function resizedRange\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/resizedRange(deltaRows={deltaRows},deltaColumns={deltaColumns}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, delta_rows, delta_columns, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_resized_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_resized_range_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","delta_rows":"example_delta_rows","delta_columns":"example_delta_columns","top":"example_top","skip":"example_skip"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_row_63c8

Invoke function row\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/row(row={row}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, row, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_row_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_row_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","row":"example_row","top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_6034

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/rowsAbove().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_6034 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_6034 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_8a35

Invoke function rowsAbove\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/rowsAbove(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_8a35 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_8a35 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_52d1

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/rowsBelow().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_52d1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_52d1 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_f09d

Invoke function rowsBelow\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/rowsBelow(count={count}).

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, count, top, skip, search, filter, orderby, select, expand, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_f09d '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_f09d '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","count":true,"top":"example_top","skip":"example_skip","search":"example_search"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_sort_63c8

Get sort from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/sort.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_sort_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_get_sort_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_sort_63c8

Update the navigation property sort in drives\n\nOfficial Microsoft Graph v1.0 endpoint: PATCH /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer, body
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_sort_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_update_sort_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_sort_63c8

Delete navigation property sort for drives\n\nOfficial Microsoft Graph v1.0 endpoint: DELETE /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/sort.

Write write
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_sort_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_delete_sort_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_unmerge_63c8

Invoke action unmerge\n\nOfficial Microsoft Graph v1.0 endpoint: POST /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/unmerge.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_unmerge_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_unmerge_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_visible_view_63c8

Invoke function visibleView\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/visibleView().

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_visible_view_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_visible_view_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json

microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_worksheet_63c8

Get worksheet from drives\n\nOfficial Microsoft Graph v1.0 endpoint: GET /drives/{drive-id}/items/{driveItem-id}/workbook/worksheets/{workbookWorksheet-id}/usedRange(valuesOnly={valuesOnly})/worksheet.

Read read
Parameters
drive_id, drive_item_id, workbook_worksheet_id, values_only, top, skip, search, filter, orderby, select, expand, count, workbook_session_id, prefer
Generic call
kosmo integrations:call microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_worksheet_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","top":"example_top","skip":"example_skip","search":"example_search","filter":"example_filter"}' --json
Shortcut
kosmo integrations:microsoft-excel microsoft_excel_drives_items_workbook_worksheets_used_range_get_worksheet_63c8 '{"drive_id":"example_drive_id","drive_item_id":"example_drive_item_id","workbook_worksheet_id":"example_workbook_worksheet_id","values_only":"example_values_only","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.

microsoft-excel.microsoft_excel_drives_items_get_workbook 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_get_workbook --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_update_workbook 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_update_workbook --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_delete_workbook 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_delete_workbook --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_get_application 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_get_application --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_update_application 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_update_application --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_delete_application 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_delete_application --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_application_calculate 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_application_calculate --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_close_session 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_close_session --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_list_comments 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_list_comments --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_create_comments 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_create_comments --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_comments_get_count_8437 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_comments_get_count_8437 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_get_comments 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_get_comments --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_comment_id string yes Path parameter `workbookComment-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_update_comments 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_update_comments --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_comment_id string yes Path parameter `workbookComment-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_delete_comments 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_delete_comments --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_comment_id string yes Path parameter `workbookComment-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_comments_list_replies 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_comments_list_replies --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_comment_id string yes Path parameter `workbookComment-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_comments_create_replies 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_comments_create_replies --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_comment_id string yes Path parameter `workbookComment-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_comments_replies_get_count_5e78 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_comments_replies_get_count_5e78 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_comment_id string yes Path parameter `workbookComment-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_comments_get_replies 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_comments_get_replies --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_comment_id string yes Path parameter `workbookComment-id`.
workbook_comment_reply_id string yes Path parameter `workbookCommentReply-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_comments_update_replies 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_comments_update_replies --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_comment_id string yes Path parameter `workbookComment-id`.
workbook_comment_reply_id string yes Path parameter `workbookCommentReply-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_comments_delete_replies 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_comments_delete_replies --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_comment_id string yes Path parameter `workbookComment-id`.
workbook_comment_reply_id string yes Path parameter `workbookCommentReply-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_create_session 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_create_session --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_get_functions 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_get_functions --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_update_functions 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_update_functions --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_delete_functions 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_delete_functions --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_abs 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_abs --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_accr_int 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_accr_int --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_accr_int_m 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_accr_int_m --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acos 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acos --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acosh 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acosh --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acot 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acot --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acoth 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_acoth --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_amor_degrc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_amor_degrc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_amor_linc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_amor_linc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_and 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_and --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_arabic 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_arabic --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_areas 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_areas --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asin 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asin --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asinh 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_asinh --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atan 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atan --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atan2 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atan2 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atanh 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_atanh --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ave_dev 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ave_dev --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_a 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_a --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_if 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_if --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_ifs 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_average_ifs --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_baht_text 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_baht_text --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_base 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_base --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_i 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_i --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_j 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_j --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_k 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_k --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_y 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bessel_y --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_beta_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_beta_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_beta_inv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_beta_inv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_dec 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_dec --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_hex 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_hex --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_oct 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bin2_oct --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_dist_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_dist_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_inv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_binom_inv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitand 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitand --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitlshift 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitlshift --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitor 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitor --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitrshift 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitrshift --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitxor 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_bitxor --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ceiling_math 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ceiling_math --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ceiling_precise 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ceiling_precise --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_char 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_char --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_dist_rt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_dist_rt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_inv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_inv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_inv_rt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_chi_sq_inv_rt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_choose 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_choose --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_clean 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_clean --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_code 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_code --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_columns 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_combin 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_combin --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_combina 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_combina --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_complex 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_complex --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_concatenate 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_concatenate --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_confidence_norm 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_confidence_norm --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_confidence_t 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_confidence_t --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_convert 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_convert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cos 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cos --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cosh 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cosh --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cot 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cot --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coth 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coth --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_a 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_a --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_blank 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_blank --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_if 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_if --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_ifs 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_count_ifs --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_day_bs 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_day_bs --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_days 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_days --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_days_nc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_days_nc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_ncd 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_ncd --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_num 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_num --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_pcd 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_coup_pcd --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_csc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_csc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_csch 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_csch --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cum_ipmt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cum_ipmt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cum_princ 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_cum_princ --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_date 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_date --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_datevalue 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_datevalue --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_daverage 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_daverage --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_day 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_day --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_days 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_days --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_days360 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_days360 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_db 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_db --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dbcs 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dbcs --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dcount 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dcount --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dcount_a 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dcount_a --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ddb 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ddb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_bin 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_bin --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_hex 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_hex --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_oct 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dec2_oct --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_decimal 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_decimal --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_degrees 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_degrees --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_delta 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_delta --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dev_sq 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dev_sq --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dget 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dget --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_disc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_disc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dmax 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dmax --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dmin 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dmin --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar_de 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar_de --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar_fr 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dollar_fr --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dproduct 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dproduct --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dst_dev 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dst_dev --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dst_dev_p 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dst_dev_p --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dsum 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dsum --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_duration 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_duration --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dvar 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dvar --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dvar_p 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_dvar_p --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ecma_ceiling 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ecma_ceiling --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_edate 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_edate --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_effect 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_effect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_eo_month 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_eo_month --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_c 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_c --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_c_precise 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_c_precise --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_precise 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_erf_precise --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_error_type 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_error_type --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_even 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_even --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_exact 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_exact --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_exp 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_exp --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_expon_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_expon_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_dist_rt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_dist_rt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_inv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_inv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_inv_rt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_f_inv_rt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fact 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fact --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fact_double 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fact_double --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_false 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_false --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_find 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_find --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_find_b 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_find_b --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fisher 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fisher --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fisher_inv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fisher_inv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fixed 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fixed --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_floor_math 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_floor_math --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_floor_precise 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_floor_precise --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fvschedule 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_fvschedule --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_ln 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_ln --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_ln_precise 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_ln_precise --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_inv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gamma_inv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gauss 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gauss --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gcd 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_gcd --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ge_step 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ge_step --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_geo_mean 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_geo_mean --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_har_mean 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_har_mean --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_bin 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_bin --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_dec 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_dec --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_oct 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hex2_oct --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hlookup 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hlookup --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hour 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hour --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hyp_geom_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_hyp_geom_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_if 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_if --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_abs 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_abs --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_argument 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_argument --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_conjugate 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_conjugate --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cos 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cos --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cosh 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cosh --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cot 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_cot --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_csc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_csc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_csch 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_csch --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_div 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_div --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_exp 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_exp --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_ln 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_ln --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_log10 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_log10 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_log2 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_log2 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_power 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_power --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_product 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_product --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_real 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_real --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sec 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sec --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sech 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sech --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sin 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sin --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sinh 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sinh --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sqrt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sqrt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sub 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sub --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sum 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_sum --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_tan 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_im_tan --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_imaginary 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_imaginary --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_int 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_int --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_int_rate 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_int_rate --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ipmt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ipmt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_irr 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_irr --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_err 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_err --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_error 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_error --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_even 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_even --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_formula 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_formula --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_logical 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_logical --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_na 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_na --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_non_text 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_non_text --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_number 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_number --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_odd 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_odd --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_text 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_is_text --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_iso_week_num 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_iso_week_num --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_iso_ceiling 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_iso_ceiling --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ispmt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ispmt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_isref 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_isref --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_kurt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_kurt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_large 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_large --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lcm 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lcm --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_left 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_left --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_leftb 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_leftb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_len 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_len --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lenb 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lenb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ln 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ln --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log10 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log10 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log_norm_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log_norm_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log_norm_inv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_log_norm_inv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lookup 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lookup --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lower 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_lower --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_match 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_match --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_max 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_max --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_max_a 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_max_a --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mduration 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mduration --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_median 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_median --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mid 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mid --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_midb 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_midb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_min 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_min --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_min_a 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_min_a --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_minute 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_minute --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mirr 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mirr --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mod 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mod --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_month 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_month --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mround 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_mround --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_multi_nomial 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_multi_nomial --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_n 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_n --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_na 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_na --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_neg_binom_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_neg_binom_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_network_days 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_network_days --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_network_days_intl 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_network_days_intl --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_nominal 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_nominal --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_inv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_inv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_s_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_s_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_s_inv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_norm_s_inv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_not 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_not --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_now 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_now --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_nper 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_nper --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_npv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_npv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_number_value 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_number_value --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_bin 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_bin --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_dec 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_dec --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_hex 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_oct2_hex --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_fprice 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_fprice --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_fyield 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_fyield --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_lprice 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_lprice --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_lyield 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_odd_lyield --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_or 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_or --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pduration 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pduration --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percent_rank_exc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percent_rank_exc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percent_rank_inc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percent_rank_inc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percentile_exc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percentile_exc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percentile_inc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_percentile_inc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_permut 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_permut --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_permutationa 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_permutationa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_phi 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_phi --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pi 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pi --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pmt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pmt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_poisson_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_poisson_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_power 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_power --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ppmt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_ppmt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price_disc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price_disc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price_mat 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_price_mat --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_product 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_product --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_proper 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_proper --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_pv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quartile_exc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quartile_exc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quartile_inc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quartile_inc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quotient 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_quotient --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_radians 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_radians --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rand 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rand --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rand_between 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rand_between --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rank_avg 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rank_avg --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rank_eq 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rank_eq --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rate 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rate --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_received 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_received --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_replace 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_replace --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_replace_b 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_replace_b --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rept 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rept --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_right 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_right --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rightb 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rightb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_roman 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_roman --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round_down 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round_down --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round_up 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_round_up --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rows 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rri 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_rri --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sec 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sec --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sech 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sech --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_second 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_second --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_series_sum 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_series_sum --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sheet 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sheets 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sheets --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sign 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sign --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sin 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sin --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sinh 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sinh --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_skew 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_skew --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_skew_p 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_skew_p --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sln 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sln --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_small 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_small --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sqrt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sqrt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sqrt_pi 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sqrt_pi --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_a 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_a --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_pa 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_pa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_p 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_p --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_s 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_st_dev_s --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_standardize 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_standardize --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_substitute 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_substitute --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_subtotal 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_subtotal --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_if 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_if --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_ifs 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_ifs --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_sq 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_sum_sq --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_syd 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_syd --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist_2_t 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist_2_t --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist_rt 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_dist_rt --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_inv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_inv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_inv_2_t 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_t_inv_2_t --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tan 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tan --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tanh 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tanh --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_eq 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_eq --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_price 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_price --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_yield 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_tbill_yield --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_text 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_text --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_time 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_time --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_timevalue 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_timevalue --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_today 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_today --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trim 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trim --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trim_mean 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trim_mean --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_true 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_true --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trunc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_trunc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_type 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_type --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_unichar 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_unichar --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_unicode 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_unicode --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_upper 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_upper --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_usdollar 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_usdollar --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_value 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_value --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_a 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_a --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_pa 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_pa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_p 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_p --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_s 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_var_s --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_vdb 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_vdb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_vlookup 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_vlookup --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_week_num 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_week_num --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_weekday 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_weekday --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_weibull_dist 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_weibull_dist --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_work_day 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_work_day --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_work_day_intl 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_work_day_intl --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xirr 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xirr --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xnpv 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xnpv --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xor 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_xor --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_year 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_year --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_year_frac 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_year_frac --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield_disc 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield_disc --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield_mat 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_yield_mat --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_z_test 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_functions_z_test --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_list_names 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_list_names --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_create_names 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_create_names --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_names_get_count_eada 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_names_get_count_eada --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_add 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_add --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_add_formula_local 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_add_formula_local --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_get_names 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_get_names --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_update_names 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_update_names --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_delete_names 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_delete_names --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_bounding_rect 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_after_43bb 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_after_0669 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_before_b5c5 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_before_b7c6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_delete 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_entire_column 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_entire_row 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_format 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_names_range_update_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_names_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_names_range_delete_format 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_names_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_insert 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_intersection 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_cell 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_column 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_row 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_merge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_offset_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_resized_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_above_80e1 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_above_d2c7 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_below_2035 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_below_cfc7 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_names_range_update_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_names_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_names_range_delete_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_names_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_unmerge 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_used_range_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_used_range_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_visible_view 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_names_workbook_named_item_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_worksheet 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_names_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_names_get_worksheet 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_names_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_list_operations 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_list_operations --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_create_operations 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_create_operations --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_operations_get_count_67f8 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_operations_get_count_67f8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_get_operations 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_get_operations --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_operation_id string yes Path parameter `workbookOperation-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_update_operations 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_update_operations --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_operation_id string yes Path parameter `workbookOperation-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_delete_operations 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_delete_operations --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_operation_id string yes Path parameter `workbookOperation-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_refresh_session 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_refresh_session --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_session_info_resource 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_session_info_resource --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
key string yes Path parameter `key`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_table_row_operation_result 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_table_row_operation_result --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
key string yes Path parameter `key`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_list_tables 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_list_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_create_tables 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_create_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_add 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_add --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_count 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_count --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_clear_filters 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_clear_filters --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_list_columns 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_list_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_create_columns 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_create_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_convert_to_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_convert_to_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_data_body_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_data_body_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_header_row_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_header_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_reapply_filters 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_reapply_filters --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_list_rows 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_list_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_create_rows 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_create_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_get_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_update_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_delete_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_total_row_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_item_at_total_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_get_worksheet 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_item_at_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_get_tables 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_get_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_update_tables 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_update_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_delete_tables 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_delete_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_clear_filters 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_clear_filters --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_list_columns 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_list_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_create_columns 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_create_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_add 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_add --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_count 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_count --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_data_body_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_data_body_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_get_filter 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_get_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_update_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_update_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_delete_filter 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_item_at_delete_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_header_row_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_header_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_total_row_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_item_at_total_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_columns 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_columns 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_columns 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_bounding_rect 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_cell 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_43bb 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_0669 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b5c5 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b7c6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_delete 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_insert 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_intersection 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_cell 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_merge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_offset_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_resized_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_80e1 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_d2c7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_2035 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_cfc7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_unmerge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_visible_view 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_data_body_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_data_body_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_get_filter 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_get_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_update_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_update_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_delete_filter 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_delete_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_items_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_items_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_percent_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_percent_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_cell_color_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_cell_color_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_custom_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_custom_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_dynamic_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_dynamic_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_font_color_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_font_color_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_icon_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_icon_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_top_items_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_top_items_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_top_percent_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_top_percent_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_values_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_apply_values_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_filter_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_bounding_rect 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_cell 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_43bb 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_0669 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b5c5 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b7c6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_delete 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_insert 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_intersection 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_cell 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_merge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_offset_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_resized_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_80e1 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_d2c7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_2035 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_cfc7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_unmerge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_visible_view 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_header_row_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_header_row_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_bounding_rect 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_cell 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_after_43bb 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_after_0669 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_before_b5c5 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_before_b7c6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_delete 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_entire_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_entire_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_insert 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_intersection 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_cell 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_merge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_offset_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_resized_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_above_80e1 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_above_d2c7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_below_2035 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_below_cfc7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_unmerge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_used_range_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_used_range_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_visible_view 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_bounding_rect 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_cell 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_43bb 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_0669 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b5c5 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b7c6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_delete 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_insert 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_intersection 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_cell 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_merge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_offset_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_resized_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_80e1 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_d2c7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_2035 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_cfc7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_unmerge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_visible_view 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_columns_workbook_table_column_total_row_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_columns_total_row_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_convert_to_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_convert_to_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_bounding_rect 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_after_43bb 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_after_0669 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_before_b5c5 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_before_b7c6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_delete 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_entire_column 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_entire_row 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_format 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_update_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_delete_format 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_insert 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_intersection 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_cell 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_column 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_row 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_merge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_offset_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_resized_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_above_80e1 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_above_d2c7 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_below_2035 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_below_cfc7 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_update_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_delete_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_unmerge 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_used_range_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_used_range_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_visible_view 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_data_body_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_worksheet 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_data_body_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_bounding_rect 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_after_43bb 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_after_0669 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_before_b5c5 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_before_b7c6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_delete 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_entire_column 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_entire_row 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_format 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_update_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_delete_format 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_insert 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_intersection 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_cell 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_column 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_row 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_merge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_offset_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_resized_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_above_80e1 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_above_d2c7 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_below_2035 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_below_cfc7 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_update_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_delete_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_unmerge 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_used_range_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_used_range_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_visible_view 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_header_row_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_worksheet 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_header_row_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_bounding_rect 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_after_43bb 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_after_0669 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_before_b5c5 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_before_b7c6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_delete 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_entire_column 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_entire_row 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_format 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_update_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_delete_format 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_insert 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_intersection 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_cell 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_column 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_row 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_merge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_offset_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_resized_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_above_80e1 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_above_d2c7 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_below_2035 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_below_cfc7 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_update_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_delete_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_unmerge 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_used_range_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_used_range_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_visible_view 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_worksheet 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_reapply_filters 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_reapply_filters --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_list_rows 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_list_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_create_rows 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_create_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_add 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_add --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_count 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_count --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_item_at 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_item_at --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_item_at_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_item_at_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_rows 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_rows 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_rows 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_bounding_rect 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_cell 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_after_43bb 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_after_0669 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_before_b5c5 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_before_b7c6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_delete 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_entire_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_entire_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_insert 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_intersection 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_cell 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_merge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_offset_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_resized_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_above_80e1 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_above_d2c7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_below_2035 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_below_cfc7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_unmerge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_used_range_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_used_range_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_visible_view 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_rows_workbook_table_row_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_rows_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_apply 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_apply --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_clear 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_reapply 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_sort_reapply --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_bounding_rect 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_after_43bb 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_after_0669 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_before_b5c5 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_before_b7c6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_delete 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_entire_column 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_entire_row 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_format 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_update_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_delete_format 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_insert 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_intersection 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_cell 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_column 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_row 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_merge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_offset_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_resized_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_above_80e1 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_above_d2c7 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_below_2035 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_below_cfc7 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_update_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_delete_sort 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_unmerge 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_used_range_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_used_range_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_visible_view 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_tables_workbook_table_total_row_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_worksheet 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_total_row_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_worksheet 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_tables_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_list_worksheets 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_list_worksheets --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_create_worksheets 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_create_worksheets --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_count_98c0 12 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_count_98c0 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_add 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_add --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_get_worksheets 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_get_worksheets --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_update_worksheets 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_update_worksheets --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_delete_worksheets 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_delete_worksheets --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_bounding_rect 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_clear 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_column 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
column1 string yes Path parameter `column1`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_after_43bb 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_after_0669 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_before_b5c5 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_before_b7c6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_delete 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_entire_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_entire_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_update_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_delete_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_insert 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_intersection 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_merge 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_offset_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_resized_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_row 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
row1 string yes Path parameter `row1`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_above_80e1 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_above_d2c7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_below_2035 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_below_cfc7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_update_sort 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_delete_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_unmerge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_used_range_5ff6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_used_range_63c8 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_visible_view 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_cell_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_worksheet 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_cell_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_charts 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_charts --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_charts 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_charts --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_add 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_add --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_count 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_count --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_axes 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_axes --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_axes 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_axes --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_axes 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_axes --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_data_labels 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_data_labels --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_data_labels 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_data_labels --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_data_labels 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_data_labels --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_8f13 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_8f13 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_9795 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_9795 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
width string yes Path parameter `width`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_664c 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_664c --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
width string yes Path parameter `width`.
height string yes Path parameter `height`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_4f04 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_image_4f04 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
width string yes Path parameter `width`.
height string yes Path parameter `height`.
fitting_mode string yes Path parameter `fittingMode`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_legend 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_legend --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_legend 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_legend --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_legend 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_legend --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_list_series 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_list_series --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_create_series 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_create_series --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_set_data 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_set_data --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_set_position 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_set_position --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_title 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_update_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_delete_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
name string yes Path parameter `name`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_axes 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_axes --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_axes 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_axes --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_axes 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_axes --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_data_labels 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_data_labels --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_data_labels 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_data_labels --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_data_labels 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_data_labels --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_8f13 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_8f13 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_9795 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_9795 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
width string yes Path parameter `width`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_664c 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_664c --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
width string yes Path parameter `width`.
height string yes Path parameter `height`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_4f04 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_image_4f04 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
width string yes Path parameter `width`.
height string yes Path parameter `height`.
fitting_mode string yes Path parameter `fittingMode`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_legend 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_legend --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_legend 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_legend --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_legend 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_legend --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_list_series 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_list_series --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_create_series 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_create_series --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_set_data 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_set_data --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_set_position 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_item_at_set_position --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_title 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_update_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_delete_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_item_at_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_charts 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_charts --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_charts 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_charts --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_charts 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_charts --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_axes 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_axes --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_axes 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_axes --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_axes 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_axes --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_category_axis 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_category_axis --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_category_axis 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_category_axis --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_category_axis 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_category_axis --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_get_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_get_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_update_font 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_update_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_delete_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_delete_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_get_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_get_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_update_line 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_update_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_delete_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_format_delete_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_format_line_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_format_line_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_major_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_major_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_major_gridlines 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_major_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_major_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_major_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_get_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_get_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_update_line 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_update_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_delete_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_major_gridlines_format_delete_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_major_gridlines_format_line_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_major_gridlines_format_line_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_minor_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_minor_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_minor_gridlines 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_minor_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_minor_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_minor_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_get_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_get_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_update_line 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_update_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_delete_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_minor_gridlines_format_delete_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_minor_gridlines_format_line_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_category_axis_minor_gridlines_format_line_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_get_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_title 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_update_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_delete_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_get_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_get_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_update_font 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_update_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_delete_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_category_axis_title_format_delete_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_series_axis 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_series_axis --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_series_axis 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_series_axis --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_series_axis 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_series_axis --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_get_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_get_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_update_font 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_update_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_delete_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_delete_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_get_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_get_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_update_line 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_update_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_delete_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_format_delete_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_format_line_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_format_line_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_major_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_major_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_major_gridlines 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_major_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_major_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_major_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_get_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_get_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_update_line 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_update_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_delete_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_major_gridlines_format_delete_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_major_gridlines_format_line_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_major_gridlines_format_line_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_minor_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_minor_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_minor_gridlines 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_minor_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_minor_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_minor_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_get_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_get_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_update_line 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_update_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_delete_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_minor_gridlines_format_delete_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_minor_gridlines_format_line_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_series_axis_minor_gridlines_format_line_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_get_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_title 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_update_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_delete_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_get_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_get_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_update_font 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_update_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_delete_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_series_axis_title_format_delete_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_value_axis 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_get_value_axis --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_value_axis 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_update_value_axis --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_value_axis 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_delete_value_axis --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_get_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_get_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_update_font 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_update_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_delete_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_delete_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_get_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_get_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_update_line 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_update_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_delete_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_format_delete_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_format_line_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_format_line_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_major_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_major_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_major_gridlines 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_major_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_major_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_major_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_get_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_get_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_update_line 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_update_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_delete_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_major_gridlines_format_delete_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_major_gridlines_format_line_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_major_gridlines_format_line_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_minor_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_minor_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_minor_gridlines 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_minor_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_minor_gridlines 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_minor_gridlines --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_get_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_get_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_update_line 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_update_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_delete_line 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_minor_gridlines_format_delete_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_minor_gridlines_format_line_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_axes_value_axis_minor_gridlines_format_line_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_get_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_title 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_update_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_delete_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_get_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_get_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_update_font 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_update_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_delete_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_axes_value_axis_title_format_delete_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_data_labels 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_data_labels --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_data_labels 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_data_labels --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_data_labels 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_data_labels --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_get_fill 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_get_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_update_fill 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_update_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_delete_fill 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_delete_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_data_labels_format_fill_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_data_labels_format_fill_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_data_labels_format_fill_set_solid_color 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_data_labels_format_fill_set_solid_color --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_get_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_get_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_update_font 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_update_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_delete_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_data_labels_format_delete_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_get_fill 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_get_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_update_fill 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_update_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_delete_fill 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_delete_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_format_fill_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_format_fill_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_format_fill_set_solid_color 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_format_fill_set_solid_color --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_get_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_get_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_update_font 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_update_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_delete_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_format_delete_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_8f13 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_8f13 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_9795 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_9795 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
width string yes Path parameter `width`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_664c 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_664c --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
width string yes Path parameter `width`.
height string yes Path parameter `height`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_4f04 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_image_4f04 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
width string yes Path parameter `width`.
height string yes Path parameter `height`.
fitting_mode string yes Path parameter `fittingMode`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_legend 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_legend --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_legend 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_legend --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_legend 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_legend --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_get_fill 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_get_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_update_fill 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_update_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_delete_fill 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_delete_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_legend_format_fill_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_legend_format_fill_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_legend_format_fill_set_solid_color 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_legend_format_fill_set_solid_color --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_get_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_get_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_update_font 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_update_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_delete_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_legend_format_delete_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_list_series 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_list_series --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_create_series 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_create_series --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_count 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_count --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_item_at 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_item_at --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_get_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_update_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_delete_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_list_points 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_list_points --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_create_points 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_item_at_create_points --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_series 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_series --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_series 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_series --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_series 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_series --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_get_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_update_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_delete_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_get_fill 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_get_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_update_fill 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_update_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_delete_fill 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_delete_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_fill_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_fill_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_fill_set_solid_color 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_fill_set_solid_color --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_get_line 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_get_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_update_line 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_update_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_delete_line 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_format_delete_line --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_line_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_format_line_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_list_points 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_list_points --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_create_points 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_create_points --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_count 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_count --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_item_at 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_item_at --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_get_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_update_format 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_delete_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_item_at_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_get_points 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_get_points --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
workbook_chart_point_id string yes Path parameter `workbookChartPoint-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_update_points 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_update_points --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
workbook_chart_point_id string yes Path parameter `workbookChartPoint-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_delete_points 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_delete_points --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
workbook_chart_point_id string yes Path parameter `workbookChartPoint-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_get_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
workbook_chart_point_id string yes Path parameter `workbookChartPoint-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_update_format 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
workbook_chart_point_id string yes Path parameter `workbookChartPoint-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_delete_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
workbook_chart_point_id string yes Path parameter `workbookChartPoint-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_get_fill 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_get_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
workbook_chart_point_id string yes Path parameter `workbookChartPoint-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_update_fill 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_update_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
workbook_chart_point_id string yes Path parameter `workbookChartPoint-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_delete_fill 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_series_points_format_delete_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
workbook_chart_point_id string yes Path parameter `workbookChartPoint-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_workbook_chart_point_format_fill_clear 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_workbook_chart_point_format_fill_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
workbook_chart_point_id string yes Path parameter `workbookChartPoint-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_workbook_chart_point_format_fill_set_solid_color 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_series_workbook_chart_series_points_workbook_chart_point_format_fill_set_solid_color --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
workbook_chart_series_id string yes Path parameter `workbookChartSeries-id`.
workbook_chart_point_id string yes Path parameter `workbookChartPoint-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_set_data 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_set_data --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_set_position 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_set_position --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_title 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_update_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_title 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_delete_title --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_get_fill 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_get_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_update_fill 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_update_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_delete_fill 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_delete_fill --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_title_format_fill_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_title_format_fill_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_title_format_fill_set_solid_color 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_charts_workbook_chart_title_format_fill_set_solid_color --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_get_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_get_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_update_font 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_update_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_delete_font 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_title_format_delete_font --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_charts_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_chart_id string yes Path parameter `workbookChart-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_names 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_names --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_names 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_names --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_get_count_b666 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_get_count_b666 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_add 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_add --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_add_formula_local 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_add_formula_local --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_names 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_names --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_names 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_names --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_names 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_names --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_bounding_rect 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_cell 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_after_43bb 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_after_0669 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_before_b5c5 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_before_b7c6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_delete 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_entire_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_entire_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_insert 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_intersection 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_cell 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_merge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_offset_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_resized_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_above_80e1 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_above_d2c7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_below_2035 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_below_cfc7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_unmerge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_used_range_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_used_range_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_visible_view 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_names_workbook_named_item_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_names_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_named_item_id string yes Path parameter `workbookNamedItem-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_pivot_tables 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_pivot_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_pivot_tables 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_pivot_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_pivot_tables_get_count_d7ec 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_pivot_tables_get_count_d7ec --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_pivot_tables_refresh_all 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_pivot_tables_refresh_all --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_pivot_tables 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_pivot_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_pivot_table_id string yes Path parameter `workbookPivotTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_pivot_tables 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_pivot_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_pivot_table_id string yes Path parameter `workbookPivotTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_pivot_tables 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_pivot_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_pivot_table_id string yes Path parameter `workbookPivotTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_pivot_tables_workbook_pivot_table_refresh 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_pivot_tables_workbook_pivot_table_refresh --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_pivot_table_id string yes Path parameter `workbookPivotTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_pivot_tables_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_pivot_tables_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_pivot_table_id string yes Path parameter `workbookPivotTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_protection 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_protection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_protection 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_protection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_protection 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_protection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_protection_protect 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_protection_protect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_protection_unprotect 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_protection_unprotect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bounding_rect_bc5e 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bounding_rect_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_cell_bc5e 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_cell_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_clear_bc5e 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_clear_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_column_bc5e 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_column_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_f819 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_f819 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_7946 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_7946 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_3678 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_3678 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_e50d 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_e50d --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_delete_bc5e 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_delete_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_column_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_column_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_row_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_row_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_format_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_format_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_format_bc5e 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_format_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_format_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_format_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_insert_bc5e 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_insert_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_intersection_bc5e 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_intersection_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_cell_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_cell_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_column_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_column_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_row_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_row_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_merge_bc5e 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_merge_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_offset_range_bc5e 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_offset_range_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_resized_range_bc5e 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_resized_range_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_row_bc5e 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_row_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_ba41 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_ba41 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_c39a 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_c39a --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_2023 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_2023 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_f542 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_f542 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_sort_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_sort_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_sort_bc5e 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_sort_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_sort_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_sort_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_unmerge_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_unmerge_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_6c80 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_6c80 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_2c25 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_2c25 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_visible_view_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_visible_view_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_worksheet_bc5e 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_worksheet_bc5e --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bounding_rect_b0fa 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_bounding_rect_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_cell_b0fa 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_cell_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_clear_b0fa 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_clear_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_column_b0fa 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_column_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_755b 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_755b --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_fdc3 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_after_fdc3 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_b68b 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_b68b --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_b752 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_columns_before_b752 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_delete_b0fa 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_delete_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_column_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_column_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_row_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_entire_row_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_format_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_format_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_format_b0fa 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_format_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_format_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_format_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_insert_b0fa 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_insert_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_intersection_b0fa 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_intersection_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_cell_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_cell_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_column_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_column_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_row_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_last_row_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_merge_b0fa 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_merge_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_offset_range_b0fa 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_offset_range_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_resized_range_b0fa 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_resized_range_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_row_b0fa 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_row_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_ca9f 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_ca9f --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_110d 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_above_110d --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_7dec 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_7dec --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_7d0c 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_rows_below_7d0c --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_sort_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_sort_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_sort_b0fa 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_update_sort_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_sort_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_delete_sort_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_unmerge_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_unmerge_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_8c82 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_8c82 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_e935 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_used_range_e935 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_visible_view_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_range_visible_view_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_worksheet_b0fa 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_range_get_worksheet_b0fa --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
address string yes Path parameter `address`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_tables 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_list_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_tables 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_create_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_add 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_add --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_count 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_count --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_clear_filters 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_clear_filters --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_list_columns 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_list_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_create_columns 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_create_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_convert_to_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_convert_to_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_data_body_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_data_body_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_header_row_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_header_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_reapply_filters 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_reapply_filters --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_list_rows 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_list_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_create_rows 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_create_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_total_row_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_item_at_total_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_item_at_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_tables 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_get_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_tables 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_update_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_tables 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_delete_tables --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_clear_filters 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_clear_filters --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_list_columns 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_list_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_create_columns 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_create_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_add 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_add --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_count 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_count --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_data_body_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_data_body_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_get_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_get_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_update_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_update_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_delete_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_item_at_delete_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_header_row_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_header_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_total_row_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_item_at_total_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_columns 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_columns 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_columns 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_columns --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_bounding_rect 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_cell 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_clear 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_column 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_43bb 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_0669 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b5c5 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b7c6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_delete 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_update_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_delete_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_insert 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_intersection 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_merge 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_offset_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_resized_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_row 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_80e1 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_d2c7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_2035 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_cfc7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_update_sort 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_delete_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_unmerge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_5ff6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_63c8 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_visible_view 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_data_body_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_worksheet 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_data_body_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_get_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_get_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_update_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_update_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_delete_filter 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_delete_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_items_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_items_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_percent_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_bottom_percent_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_cell_color_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_cell_color_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_custom_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_custom_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_dynamic_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_dynamic_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_font_color_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_font_color_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_icon_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_icon_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_top_items_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_top_items_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_top_percent_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_top_percent_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_values_filter 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_apply_values_filter --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_filter_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_bounding_rect 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_cell 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_clear 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_column 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_43bb 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_0669 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b5c5 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b7c6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_delete 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_update_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_delete_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_insert 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_intersection 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_merge 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_offset_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_resized_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_row 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_80e1 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_d2c7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_2035 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_cfc7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_update_sort 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_delete_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_unmerge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_5ff6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_63c8 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_visible_view 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_header_row_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_worksheet 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_header_row_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_bounding_rect 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_cell 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_clear 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_column 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_after_43bb 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_after_0669 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_before_b5c5 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_before_b7c6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_delete 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_entire_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_entire_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_update_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_delete_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_insert 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_intersection 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_merge 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_offset_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_resized_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_row 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_above_80e1 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_above_d2c7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_below_2035 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_below_cfc7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_update_sort 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_delete_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_unmerge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_used_range_5ff6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_used_range_63c8 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_visible_view 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_worksheet 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_bounding_rect 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_cell 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_clear 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_column 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_43bb 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_0669 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b5c5 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b7c6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_delete 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_update_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_delete_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_insert 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_intersection 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_merge 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_offset_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_resized_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_row 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_80e1 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_d2c7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_2035 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_cfc7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_update_sort 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_delete_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_unmerge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_5ff6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_63c8 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_visible_view 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_columns_workbook_table_column_total_row_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_worksheet 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_columns_total_row_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_column_id string yes Path parameter `workbookTableColumn-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_convert_to_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_convert_to_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_bounding_rect 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_cell 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_after_43bb 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_after_0669 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_before_b5c5 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_before_b7c6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_delete 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_entire_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_entire_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_insert 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_intersection 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_cell 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_merge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_offset_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_resized_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_above_80e1 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_above_d2c7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_below_2035 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_below_cfc7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_unmerge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_used_range_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_used_range_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_visible_view 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_data_body_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_data_body_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_bounding_rect 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_cell 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_after_43bb 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_after_0669 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_before_b5c5 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_before_b7c6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_delete 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_entire_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_entire_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_insert 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_intersection 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_cell 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_merge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_offset_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_resized_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_above_80e1 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_above_d2c7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_below_2035 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_below_cfc7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_unmerge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_used_range_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_used_range_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_visible_view 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_header_row_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_header_row_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_bounding_rect 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_cell 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_after_43bb 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_after_0669 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_before_b5c5 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_before_b7c6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_delete 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_entire_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_entire_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_insert 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_intersection 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_cell 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_merge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_offset_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_resized_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_above_80e1 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_above_d2c7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_below_2035 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_below_cfc7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_unmerge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_used_range_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_used_range_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_visible_view 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_reapply_filters 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_reapply_filters --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_list_rows 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_list_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_create_rows 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_create_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_add 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_add --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_count 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_count --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_item_at 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_item_at --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_item_at_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_item_at_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
index string yes Path parameter `index`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_rows 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_rows 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_rows 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_rows --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_bounding_rect 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_cell 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_clear 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_column 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_after_43bb 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_after_0669 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_before_b5c5 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_before_b7c6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_delete 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_entire_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_entire_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_update_format 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_delete_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_insert 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_intersection 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_cell 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_merge 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_offset_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_resized_range 17 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_row 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_above_80e1 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_above_d2c7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_below_2035 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_below_cfc7 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_update_sort 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_delete_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_unmerge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_used_range_5ff6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_used_range_63c8 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_visible_view 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_rows_workbook_table_row_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_worksheet 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_rows_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
workbook_table_row_id string yes Path parameter `workbookTableRow-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_apply 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_apply --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_clear 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_reapply 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_sort_reapply --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_bounding_rect 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_bounding_rect --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_cell 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_clear 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_clear --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_column 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_after_43bb 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_after_43bb --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_after_0669 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_after_0669 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_before_b5c5 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_before_b5c5 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_before_b7c6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_columns_before_b7c6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_delete 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_delete --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_entire_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_entire_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_entire_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_entire_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_update_format 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_update_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_delete_format 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_delete_format --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_insert 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_insert --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_intersection 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_intersection --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_cell 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_cell --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_column 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_column --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_row 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_last_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_merge 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_merge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_offset_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_offset_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_resized_range 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_resized_range --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_row 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_row --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_above_80e1 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_above_80e1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_above_d2c7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_above_d2c7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_below_2035 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_below_2035 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_below_cfc7 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_rows_below_cfc7 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_update_sort 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_update_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_delete_sort 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_delete_sort --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_unmerge 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_unmerge --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_used_range_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_used_range_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_visible_view 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_tables_workbook_table_total_row_range_visible_view --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_total_row_range_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_worksheet 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_tables_get_worksheet --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
workbook_table_id string yes Path parameter `workbookTable-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_bounding_rect_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_bounding_rect_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_cell_5ff6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_cell_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_clear_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_clear_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_column_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_column_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_01cd 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_01cd --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_cb70 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_cb70 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_2c44 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_2c44 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_f995 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_f995 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_delete_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_delete_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_column_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_column_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_row_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_row_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_format_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_format_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_format_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_format_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_format_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_format_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_insert_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_insert_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_intersection_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_intersection_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_cell_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_cell_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_column_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_column_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_row_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_row_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_merge_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_merge_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_offset_range_5ff6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_offset_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_resized_range_5ff6 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_resized_range_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_row_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_row_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_4e71 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_4e71 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_b3a9 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_b3a9 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_0a40 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_0a40 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_340c 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_340c --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_sort_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_sort_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_sort_5ff6 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_sort_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_sort_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_sort_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_unmerge_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_unmerge_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_visible_view_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_visible_view_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_worksheet_5ff6 13 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_worksheet_5ff6 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_bounding_rect_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_bounding_rect_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_cell_63c8 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_cell_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
row string yes Path parameter `row`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_clear_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_clear_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_column_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_column_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
column string yes Path parameter `column`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_886c 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_886c --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_6148 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_after_6148 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_22a9 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_22a9 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_a137 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_columns_before_a137 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_delete_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_delete_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_column_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_column_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_row_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_entire_row_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_format_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_format_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_format_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_format_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_format_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_format_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_insert_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_insert_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_intersection_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_intersection_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
another_range string yes Path parameter `anotherRange`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_cell_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_cell_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_column_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_column_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_row_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_last_row_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_merge_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_merge_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_offset_range_63c8 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_offset_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
row_offset string yes Path parameter `rowOffset`.
column_offset string yes Path parameter `columnOffset`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_resized_range_63c8 16 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_resized_range_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
delta_rows string yes Path parameter `deltaRows`.
delta_columns string yes Path parameter `deltaColumns`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_row_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_row_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
row string yes Path parameter `row`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_6034 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_6034 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_8a35 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_above_8a35 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_52d1 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_52d1 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_f09d 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_rows_below_f09d --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
count boolean no Microsoft Graph OData query parameter `$count`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_sort_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_sort_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_sort_63c8 15 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_update_sort_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
body object yes Request body matching the official Microsoft Excel workbook OpenAPI schema for this operation.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_sort_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_delete_sort_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_unmerge_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_unmerge_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_visible_view_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_drive_items_drive_item_workbook_worksheets_workbook_worksheet_used_range_visible_view_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.
microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_worksheet_63c8 14 parameters
Schema command
kosmo integrations:schema microsoft-excel.microsoft_excel_drives_items_workbook_worksheets_used_range_get_worksheet_63c8 --json
ParameterTypeRequiredDescription
drive_id string yes Path parameter `drive-id`.
drive_item_id string yes Path parameter `driveItem-id`.
workbook_worksheet_id string yes Path parameter `workbookWorksheet-id`.
values_only string yes Path parameter `valuesOnly`.
top string no Microsoft Graph OData query parameter `$top`.
skip string no Microsoft Graph OData query parameter `$skip`.
search string no Microsoft Graph OData query parameter `$search`.
filter string no Microsoft Graph OData query parameter `$filter`.
orderby string no Microsoft Graph OData query parameter `$orderby`.
select string no Microsoft Graph OData query parameter `$select`.
expand string no Microsoft Graph OData query parameter `$expand`.
count boolean no Microsoft Graph OData query parameter `$count`.
workbook_session_id string no Optional Microsoft Graph `Workbook-Session-Id` header for persistent or non-persistent Excel sessions.
prefer string no Optional Microsoft Graph `Prefer` header.

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.