Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt

Use this file to discover all available pages before exploring further.

Server path: /microsoft-365-drive | Type: Application | PCID required: Yes

Tools


microsoft_365_drive_copy_drive_item

Copy a drive item Parameters:
ParameterTypeRequiredDefaultDescription
item_idstringYesThe unique ID of the drive item to copy
namestringNoNew name for the copied item (optional — defaults to original name)
parentReferenceobjectNoDestination folder for the copy (optional — defaults to same folder)

microsoft_365_drive_create_drive_folder

Create a new folder Parameters:
ParameterTypeRequiredDefaultDescription
item_idstringYesThe unique ID of the parent folder where the new folder will be created
@microsoft.graph.conflictBehaviorstringNoConflict resolution behavior if name already exists
folderobjectYesIndicates this is a folder (use empty object {})
namestringYesName for the new folder

Create a sharing link for a drive item Parameters:
ParameterTypeRequiredDefaultDescription
item_idstringYesThe unique ID of the drive item to share
expirationDateTimestringNoOptional expiration time for the link
scopestringYesScope of the sharing link
typestringYesType of sharing link to create

microsoft_365_drive_delete_item

Delete a drive item Parameters:
ParameterTypeRequiredDefaultDescription
item_idstringYesThe unique ID of the drive item to delete

microsoft_365_drive_get_item

Get a drive item Parameters:
ParameterTypeRequiredDefaultDescription
item_idstringYesThe unique ID of the drive item
$selectstringNoComma-separated properties to return

microsoft_365_drive_get_my_drive

Get my OneDrive Parameters:
ParameterTypeRequiredDefaultDescription
$selectstringNoComma-separated list of properties to return (e.g. “id,name,quota,driveType”)

microsoft_365_drive_list_drive_item_children

List contents of a folder Parameters:
ParameterTypeRequiredDefaultDescription
item_idstringYesThe unique ID of the folder to list
$topintegerNoNumber of items to return (max 200)
$orderbystringNoSort order (e.g. “name asc”)
$selectstringNoComma-separated properties to return

microsoft_365_drive_list_my_drive_root_items

List files and folders in OneDrive root Parameters:
ParameterTypeRequiredDefaultDescription
$topintegerNoNumber of items to return (max 200)
$filterstringNoOData filter expression (e.g. “file ne null” for files only, “folder ne null” for folders)
$orderbystringNoSort order (e.g. “name asc”, “lastModifiedDateTime desc”)
$selectstringNoComma-separated properties to return (e.g. “id,name,size,webUrl,lastModifiedDateTime”)

microsoft_365_drive_search_my_drive

Search OneDrive Parameters:
ParameterTypeRequiredDefaultDescription
search_textstringYesSearch query string (e.g. “budget”, “presentation”, “2024”)
$topintegerNoMaximum number of results to return
$selectstringNoComma-separated properties to return

microsoft_365_drive_update_drive_item

Rename or move a drive item Parameters:
ParameterTypeRequiredDefaultDescription
item_idstringYesThe unique ID of the drive item to update
namestringNoNew name for the item (to rename)
parentReferenceobjectNoNew parent folder reference (to move the item)