Expand my Community achievements bar.

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?

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

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