curl -u admin:admin -X DELETE http://localhost:4502/path/to/node
AEM4BEGINNER blog is for Beginners who are interested in learning Adobe Experience Manager (AEM) aka Adobe CQ5 from basics. The Information provided in this blog is for learning and testing purposes only. Here, I have posted the information which I know or gathered from different sources.
May 4, 2020
Estimated Post Reading Time ~
How to Delete a Node
One of my favorite things about AEM is how it really leverages the HTTP specification. This really comes in handy when you have a node buried deep in a large tree inside AEM which you want to delete, but the browser times out before CRX DELite can render the expanded folder. In such a case, you can directly delete the node by using the HTTP “DELETE” verb. For example:
curl -u admin:admin -X DELETE http://localhost:4502/path/to/node
curl -u admin:admin -X DELETE http://localhost:4502/path/to/node
By
aem4beginner
No comments:
Post a Comment
If you have any doubts or questions, please let us know.