Hi @Navelkar, Abhijeet-Narendra-XT , welcome to Microsoft Q&A forum. There are multiple ways to achieve this requirement.
1) First is we can make use of Data Migration Tool to migrate data from one Azure Cosmos DB to another one, however this is one time activity which will migrate the data. Here we can customize the query to include only few properties which we want to migrate instead of everything.
Use Data migration tool to migrate your data to Azure Cosmos DB
Once this data migration is done, we can make use of change feed to take care of new documents. The Azure Cosmos DB change feed is a mechanism for getting a continuous and incremental feed of records from a Cosmos DB container as those records are being created or modified. This can be used to migrate new documents after the migration process.
Azure Cosmos DB - Change Feed Lab
2) Another way to use the ADF. Below example shows a way how can we achieve it, it is not direct example but can be customized to achieve the requirements. Again ADF pipelines can be scheduled, so they will take care of new loads as well.
Copy and transform data in Azure Cosmos DB (SQL API) by using Azure Data Factory
3) We can create our own customized code to migrate the data from one Cosmos account to another and then can be scheduled it as well. Here we will have the complete liberty of adding/updating details if needed.
Please let us know if this helps or else we can discuss further on the same.
Please don't forgot to click on accept it as answer button wherever the information provided helps you. This can be beneficial to other community members as well.