Expand my Community achievements bar.

Adobe Summit 2025: AEM Session Recordings Are Live! Missed a session or want to revisit your favorites? Watch the latest recordings now.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

scene7 api

Avatar

Level 1

I have a lot of images, and I want automatically combine it in image sets. I want find API calls for creating digital assets without using UI.

Can you help me?

Add topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Employee

Egor Anisimov wrote...

I have a lot of images, and I want automatically combine it in image sets. I want find API calls for creating digital assets without using UI.

Can you help me?

 


Scene7 Tech Support can provide API details and how to do this.

For your pruposes, it might be easier to use Batch Set Presets which are triggered at time of uplaod, to create sets:

http://help.adobe.com/en_US/scene7/using/WSf6ef983f54a76485-20cc30b112624e7b244-7fff.html

View solution in original post

3 Replies

Avatar

Correct answer by
Employee

Egor Anisimov wrote...

I have a lot of images, and I want automatically combine it in image sets. I want find API calls for creating digital assets without using UI.

Can you help me?

 


Scene7 Tech Support can provide API details and how to do this.

For your pruposes, it might be easier to use Batch Set Presets which are triggered at time of uplaod, to create sets:

http://help.adobe.com/en_US/scene7/using/WSf6ef983f54a76485-20cc30b112624e7b244-7fff.html

Avatar

Level 8

I'm really the wrong guy to be answering this but maybe you can start here: http://dev.day.com/docs/en/cq/current/javadoc/com/day/cq/dam/scene7/api/Scene7UploadService.html

 

hope that helps,

scott

Avatar

Former Community Member

Hey this is how you may need top create image set and add assets to image set. Using S7SetHelper class you cn create image set. Try to check latest day commons bundles I guess it should be 5.6.8 and above. Below that you wont get S7SetHelper class.

import com.day.cq.dam.commons.util.S7SetHelper;

import com.day.cq.dam.api.s7dam.set.ImageSet;

ImageSet is = S7SetHelper.createS7ImageSet(imageSetParentResource, imagesetname, null);

is.add(asset);

-Maruthi