Communicate with the mPulse Query & Repository REST APIs to fetch information about tenants and apps.
This snippet will get you up and running, see the full documentation for more details.
See how to generate an API Token for details about the apiToken
using mPulseAPI
# mPulse uses apiToken for authentication
token = getRepositoryToken("", "")
# Get a domain by app name
domain = getRepositoryDomain(token, appName="")
# Get a domain by App Key (formerly known as API key)
domain = getRepositoryDomain(token, appKey="")
domain["attributes"]["appKey"] # Gets the App Key (formerly known as API key)
# for this app
domain["custom_metrics"] # Get a Dict of custom metrics
domain["custom_metrics"]["Conversion Rate"] # Get mapping for Conversion Rate custom metric
domain["custom_metrics"]["Conversion Rate"]["fieldname"] # Get field name for Conversion Rate custom
# metric
# Get all domains in tenant
domains = getRepositoryDomain(token)
# Get a tenant
tenant = getRepositoryTenant(token, name="")
09/13/2016
about 1 month ago
50 commits