post https://client.apimetrics.io/api/2/workflows/
Use this API to create a new Workflow
Use this API to create a new Workflow in your account. The JSON schema for the input is available at ./schema.json
import APImetrics
apimetrics = APImetrics.APImetricsAPI(apimetrics_key="your_api_key")
with open('create.json') as handle:
data = json.loads(handle.read())
resp = apimetrics.create_workflow(data)
print result['id']