I am trying to make a copy of an artifact in the same repository in Artifactory from PowerShell. Below is the code I am using to achieve this. And I am getting
"Invoke-RestMethod: The remote server returned an error: (409) Conflict."
error when I execute this code.
Invoke-RestMethod -Uri
"http://server/artifactory/api/copy/repoName/Package1.nupkg?to=/repoName/Package2.nupkg" -Method POST -UseDefaultCredentials
Any help is appreciated!
I encountered this when trying to use folders. If that's your case too, try PUT-ing the folder path first, and make sure to authenticate the call both for this and for POST-ing the copy: