Moving pages between sites

Is there any way to do this? I don’t see any way within the UI, is there a way to do this on the backend somehow?

Thanks,
Zach

There’s no official support for moving pages from one site to another.

As a practical matter, if you’re comfortable with working in the database directly, it should be possible to simply change the ID for that page to point to a different site. Obviously take precautions like backups if you’re going to do manual editing like that.

You could also try using the API to basically make a “copy” of the page: get the API output for the existing page and just send it as the data for creating a new one in the site you want to move it to.

1 Like

Changing the database values worked like a charm. Thanks!