How to move pages from 1 collection to another collection

I have 3 pages collections and I want to move some pages from 1 collection to the others collections.
How can I do it without the need to create these pages again under the new collection?

Hello @rotem.dahan and welcome to the community!

You can’t do that through the dashboard, as models usually have schema differences, with different fields on each one.

You can however create a script using our REST API to do so by fetching the record from the original model: List all records - Record - Content Management API and then creating a new record https://www.datocms.com/docs/content-management-api/resources/item/create using the fetched values, making sure that the schema of the new record matches the other model.

Let me know if you have any doubts during this process