Forum Discussion

ptremblay1515's avatar
ptremblay1515
Copper Contributor
Jun 06, 2022
Solved

On-premise sharepoint API upload pdf error

Hello, I'm trying to upload a PDF on the on-premise sharepoint 2016 through the API with Postman. Here is my setup.   URL: https://test.com/_api/Web/GetFolderByServerRelativeUrl('/somefolder/Shared...
  • ptremblay1515's avatar
    Jun 07, 2022

    I was able to fix this issue by supplying the site name in the url and not in the GetFolderByServerRelativeUrl.

    So instead of 

    https://test.com/_api/Web/GetFolderByServerRelativeUrl('/sitename/Shared%20Documents')/Files/Add(url='TestPdf.pdf', overwrite=true)

    use

    https://test.com/sitename/_api/Web/GetFolderByServerRelativeUrl('/Shared%20Documents')/Files/Add(url='TestPdf.pdf', overwrite=true)

Resources