This example shows how to list images stored in Docmosis Cloud using Python. It calls the Docmosis REST API and returns a list of images in a json response.
The sample code includes the instructions to get started. You will need a Free Trial and then plug your Docmosis Cloud access key into the code below, then run.
Note: This code sample is written to specifically work with DWS4.
# This example shows how to use Python to call the Docmosis Cloud service to listImages stored in an account import requests import json import datetime # Set your region url here. # End-point in the USA URL = 'https://us1.dws4.docmosis.com/api/' # End-point in the EU #URL = 'https://eu1.dws4.docmosis.com/api/' # End-point in AUS #URL = 'https://au1.dws4.docmosis.com/api/' # Set your access key here. This is visible in your cloud account in the Docmosis Web Site. # It is your key to accessing your service - keep it private and safe. accessKey='XXX' if accessKey=='XXX': print("Please set your access key") exit() payload = {'accessKey': accessKey } r = requests.post(URL, data = payload) if r.status_code == requests.codes.ok: print("Succeeded"); print(r.text) else: print("Failed"); print(r.text)