Copy item as link through WS API?

How would I copy an item as a link using the web services API? I’m finding no documentation on this or comments on it in the Web Services Development Kit PDF that has been provided to me previously.

“Copy as Link” is really nothing more than adding the item to a new folder. (Apparently the concept of adding to a folder was “too technical” for some people).

Use the Content.addFolderChildren() method. You’ll need the path or ID of the folder as well as the ID of the item you are adding to the folder.

Dave

Worked like a charm! Thanks.