SharePoint Step
Saves both user-uploaded files and workflow-generated documents (reports, exports, attachments) to organizational sites and document libraries in Sharepoint.
Top-level properties
| name | type | required | constraints | |
|---|---|---|---|---|
connection | string | yes | Name of the connection instance | |
action | string | yes | enum: UPLOAD_FILE | Operation to perform |
drive | string | yes | Target SharePoint drive/site | |
folder | string | no | Folder path within the drive | |
files | array[File] | yes | minItems: 1 | Files to upload |
File & Source variants — same as Amazon S3.
Example (JSON)
{
"connection": "sharepoint-prod",
"action": "UPLOAD_FILE",
"drive": "Marketing",
"folder": "Documents/Assets",
"files": [
{
"source": {
"id": "file-654",
"downloadUrl": "https://files.example.com/download/file-654"
},
"name": "brand-guide.pdf"
},
{
"source": {
"name": "logo.png",
"metadata": { "contentType": "image/png", "size": 4096 }
},
"name": "logo.png"
}
]
}Updated 22 days ago
