scene7 api | Community
Skip to main content
October 16, 2015
Solved

scene7 api

  • October 16, 2015
  • 3 replies
  • 1321 views

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?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by mvanceadobe

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

3 replies

mvanceadobeAdobe EmployeeAccepted solution
Adobe Employee
October 16, 2015

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

Scott_Brodersen
October 16, 2015

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

October 16, 2015

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