Hi @Zendark Using JS I believe you can do something like:const bodyParts = new URLSearchParams();
bodyParts.append(':operation', 'activate');
bodyParts.append(':path', '/content/my/page');
fetch('http://localhost:4592/bin/replicate', {
method: 'POST',
headers: {
'Content-Type': 'app...