> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Upload File

Upload a file to SharePoint.

* **Least privileged** Microsoft Graph permission to access the action via **application**: `Files.ReadWrite.All`.
* Higher privileged Microsoft Graph permissions to access the action via **application**: `Sites.ReadWrite.All`.

<Note>
  External Documentation

  To learn more, visit the [SharePoint documentation](https://learn.microsoft.com/en-us/graph/api/driveitem-put-content?view=graph-rest-1.0\&tabs=http).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                                                                                                                                              |
  | --------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Drive ID        | The ID of the drive. Can be obtained via the `List Drives For Site` action.                                                                                                                              |
  | File Identifier | The identifier of the file to upload. You can create a file identifier using the `Set File Variable` action.                                                                                             |
  | File Name       | The name of the file, including its extension.<br /><br />**Note:** Make sure to include the correct file extension based on the file type (e.g., for a `JPEG` image, use the format `{FileName}.jpeg`). |
  | Parent ID       | The ID of the parent folder.<br /><br />For Example: `/FolderA` ,`/FolderA/FolderB`.<br /><br />**Note:** If no input is provided, the file will be uploaded to the `root` folder.                       |
  | Site ID         | The ID of the site. Can be obtained via the `List Sites` action.                                                                                                                                         |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "0123456789abc",
	"name": "FileB.txt",
	"size": 35,
	"file": {}
}
```

## Workflow Library Example

[Upload File with Sharepoint and Send Results Via Email](https://library.blinkops.com/workflows/upload-file-with-sharepoint-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/upload-file-with-sharepoint-and-send-results-via-email/canvas" />
</div>
