Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

AEM REST APIs

Avatar

Former Community Member

Hi All,

I am wondering if I can compete the following use cases with the AEM 6.2 REST APIs or if I will need to hit the SOAP APIs?

 

GET /folders/contents
GET /folders/{id}/contents
GET /folders/metadata
GET /folders/{id}/metadata
GET /files | GET /files/{id}
GET /files/{id}/metadata
GET /files/metadata

 

Thanks!!

 
1 Accepted Solution

Avatar

Correct answer by
Level 10

AEM does not expose a WSDL. You cannot communicate with AEM using SOAP. You can, however write a custom service that consumes a 3rd party SOAP service: 

http://scottsdigitalcommunity.blogspot.ca/2016/08/creating-aem-html-template-language.html

You need to use GET. POST requests to invoke AEM operations. 

Hope this helps... 

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

AEM does not expose a WSDL. You cannot communicate with AEM using SOAP. You can, however write a custom service that consumes a 3rd party SOAP service: 

http://scottsdigitalcommunity.blogspot.ca/2016/08/creating-aem-html-template-language.html

You need to use GET. POST requests to invoke AEM operations. 

Hope this helps...