Hi Community,
I have to move almost 140 fragments from one env. to another. Is there any way I can select all of them instead of adding it one by one in the package?
Thanks,
Akram Husain
Solved! Go to Solution.
Views
Replies
Total Likes
@AkramH Unfortunately this option not available at this point. We can achieve this by API's which may ease you little bit.
First API to get list of Fragments with filtering: https://developer.adobe.com/journey-optimizer-apis/references/content/#operation/getFragments
Second API to create a package with API: https://experienceleague.adobe.com/en/docs/experience-platform/sandbox/sandbox-tooling-api/packages#...
Artifacts Array sample for fragments:
"artifactsList": [
{
"id": "Fragment ID",
"type": "AJO_FRAGMENT",
"title": "Fragment Name"
},
{
"id": "Fragment ID 2",
"type": "AJO_FRAGMENT",
"title": "Fragment Name2"
}
]
Let me know if you need more help on this and also mark this thread accordingly.
~cheers,
NN.
@AkramH Unfortunately this option not available at this point. We can achieve this by API's which may ease you little bit.
First API to get list of Fragments with filtering: https://developer.adobe.com/journey-optimizer-apis/references/content/#operation/getFragments
Second API to create a package with API: https://experienceleague.adobe.com/en/docs/experience-platform/sandbox/sandbox-tooling-api/packages#...
Artifacts Array sample for fragments:
"artifactsList": [
{
"id": "Fragment ID",
"type": "AJO_FRAGMENT",
"title": "Fragment Name"
},
{
"id": "Fragment ID 2",
"type": "AJO_FRAGMENT",
"title": "Fragment Name2"
}
]
Let me know if you need more help on this and also mark this thread accordingly.
~cheers,
NN.