Im currently trying to copy one file from my pc to a diffrent server with rclone running on a docker which im controling with api requests.
I tried to use operation/uploadfile wich dosnt seem to let me specify my file that i want to upload (the documentation says that “each part in the body represents a file to be uploaded” but never explains what that means)
after that i tried operation/copyfile with “scrFs=/ srcRemote=C:/test/test.txt dstFs=remote: dstRemote=/” which gives me the error message “failed: object not found” and with -vv flag only adds “4 go routines active” (using / insrcFs was intentional because in this case i used rClone directly on my laptop")
i tried the same api with diffrent remotes,files,directories and notations but i always get the same resoult
i also tried sync/copy but even though its the first command to work it only copys directories not single files.
Side note: I need to specify the computer im controling rclone with as a remote but that feels like an overcomplicated way that has an easier solution. Something like telling rclone to get the file from the computer im sending the api from. but so far i havent found anything like that. would be nice to know if something like that exists or not.