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