diff --git a/net/management-api-v2/cm_api_v2_clone_environment.cs b/net/management-api-v2/cm_api_v2_clone_environment.cs index 451d65ea..b1d491d7 100644 --- a/net/management-api-v2/cm_api_v2_clone_environment.cs +++ b/net/management-api-v2/cm_api_v2_clone_environment.cs @@ -14,5 +14,9 @@ RolesToActivate = new[] { Guid.Parse("2f925111-1457-49d4-a595-0958feae8ae4") + }, + CopyDataOptions = new CopyDataOptions { + ContentItemsAssets = true, + ContentItemVersionHistory = false } }); diff --git a/rest/management-api-v2/cm_api_v2_clone_environment.curl b/rest/management-api-v2/cm_api_v2_clone_environment.curl index 40af438d..d77cc12b 100644 --- a/rest/management-api-v2/cm_api_v2_clone_environment.curl +++ b/rest/management-api-v2/cm_api_v2_clone_environment.curl @@ -5,5 +5,9 @@ curl --request POST \ --data ' { "name": "Develop", - "roles_to_activate": ["1144138e-420b-4f0f-9056-10c8c7d60869"] + "roles_to_activate": ["1144138e-420b-4f0f-9056-10c8c7d60869"], + "copy_data_options": { + "content_items_assets": true, + "content_item_version_history": false + } }'