I use rest api "https://api.onedrive.com/v1.0/drive/root/view.delta?token=***" "reference page" to get oneDrive files changes, it work for add file or folder or delete, but i need to get old path and new path for move, and get old name and new name for renamed file or folder.
Is there any way to get the rename and move changes?
The API doesn't return / track the old-state of items.
To accomplish this, you need to maintain that state in a cache by tracking items with their unique identifier. You can then process the changes coming from the delta API, and when the change record is returned to you, you can evaluate your current state vs. the new state provided by the delta API, and use that to have the old-name and new-name, or old-path and new-path.