Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list
SOLVED

AEM REST APIs

Avatar

Not applicable

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...