Cloudify APIs
Get the latest docs.
You are looking at documentation for an older release. Not what you want? Use the version selector on the top banner or click here.
Python Client
In this section you will find information about our python API client. Read our technical documentation for more information Python Client To use this client run the command pip install cloudify-rest-client==4.1 or add it to your dependencies file. Here is an example of how to get blueprints from cloudify_rest_client import CloudifyClient client = CloudifyClient('http://MANAGER_HOST') blueprints = client.blueprints.list() for blueprint in blueprints: print blueprint.id
Manager REST API Reference