1

So I am trying to upload Files to a Sharepoint Site via the REST API. I am already using the /Files/Add() Path-Function, but that one is (from what I've found) per design locked to 250MB max and cannot be enlarged, but I would need to upload Files larger than that.

Is there any way I can do this with the Sharepoint REST API?

1
  • Which version of SharePoint are you using? Commented Dec 3, 2020 at 10:45

1 Answer 1

1

I found a solution:

/getFileByServerRelativeUrl('{Path to File}')/startupload(uploadId={guid})

/getFileByServerRelativeUrl('{Path to File}')/continueupload(uploadId={guid}, fileOffset={Bytes uploaded until now})

/getFileByServerRelativeUrl('{Path to File}')/finishupload(uploadId={guid}, fileOffset={Bytes uploaded until now})

continue and finish can have Chunks in there API-Body and after the upload is finished all of the chunks are added to the file.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.