I have one API ( voice , mvb, accessories products ) I want to fetch the all the product details form api to aem & storage the product details in node level (Json format ) and creating product components process steps
Solved! Go to Solution.
Views
Replies
Total Likes
A few comments have been already made, but I want to give you my view on it.
In short: if it's possible avoid it. Because you will end up with topics like:
In many cases it might be best if you either bypass AEM when you need to display product information (and let the frontend reach out to the PIM directly). You can look at the current Commerce Integration Framework (CIF2) of Adobe; of course this is for a shopping solution, but also for a shop displaying products is a big topic.
Hope to give you some inspiration what to look for.
Jörg
Hi @manojdandukumar ,
Yes it is possible to do. What is the query here? Please elaborate?
You can write a servlet. , which can consume the API end point and parse the entire json and then for each product it can create a node in the JCR using various API.
It would be great if you share more details on how you want to create a product component.
Note: Rather create one node per product , you can also create one content per product . Also you can share an API in AEM which will create a product in AEM. And the logic of parsing the API end point can be out side AEM which can at-last call the AEM end point to store the products alone.
@manojdandukumar
You can definitely fetch the product details from API and store it in node level.
You can get the response in JSON format by makunf REST call and create json files response at node level in AEM. Try using service user for accessing.
Thanks,
Nikhil
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi,
You can write a scheduler(if you want to pull the updated content on a regular basis) and a java service that will pull the data from REST endpoint and save it in JCR(you can use service user). Let us know what exactly are you looking for, some one from the community will definitely be able to help you.
Thanks, Bilal
A few comments have been already made, but I want to give you my view on it.
In short: if it's possible avoid it. Because you will end up with topics like:
In many cases it might be best if you either bypass AEM when you need to display product information (and let the frontend reach out to the PIM directly). You can look at the current Commerce Integration Framework (CIF2) of Adobe; of course this is for a shopping solution, but also for a shop displaying products is a big topic.
Hope to give you some inspiration what to look for.
Jörg