cancel
Showing results for 
Search instead for 
Did you mean: 

How to Access alfresco custom action in python

kumawatprem
Champ in-the-making
Champ in-the-making

Hi, I have create one custom action in alfresco using Java Code for merging multiple images into one pdf. I want to access this custom action in Python application and I am using cmis browser binding for establish connection with alfresco.

Please give me any ideas for how can i access this custom action in python.

Thanks in advance

1 REPLY 1

jpotts
World-Class Innovator
World-Class Innovator

Write a web script. The controller of your web script will invoke your action using the Action Service. The web script exposes a RESTful endpoint which you will call from Python.

If you need help learning how to write a web script, take a look at this tutorial. If you need help hitting RESTful APIs with Python, take a look at this.