Is there a way to copy page hierarchy and search and replace strings in content using REST API? I am aware of the call
POST
wiki/rest/api/content/{id}/pagehierarchy/copy
where we can specify search and replace in the title options.
{
"copyAttachments": true,
"copyPermissions": true,
"copyProperties": true,
"copyLabels": true,
"copyCustomContents": true,
"copyDescendants": true,
"destinationPageId": "<string>",
"titleOptions": {
"prefix": "<string>",
"replace": "<string>",
"search": "<string>"
}
}
My question is if there is a way to mimic the Advanced Options of the GUI Copy Page Tree using REST API and replace strings in the content of the pages instead of the title only?
