Subscription Analytics and Revenue Reporting
Adds custom attributes to customers that have the specified email address. See the docs here
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
Adds custom attributes to a given customer. See the docs here
Adds tags to customers that have the specified email address. See the docs here
Adds tags to a given customer. See the docs here
With the ChartMogul API, you can build a variety of applications and
integrations to help you better understand and manage your customer data. Here
are some examples of what you can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
chartmogul: {
type: "app",
app: "chartmogul",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.chartmogul.com/v1/ping`,
auth: {
username: `${this.chartmogul.$auth.account_token}`,
password: `${this.chartmogul.$auth.secret_key}`,
},
})
},
})
Python API on Pipedream offers developers to build or automate a variety of
tasks from their web and cloud apps. With the Python API, users are able to
create comprehensive and flexible scripts, compose and manage environment
variables, and configure resources to perform a range of functions.
By using Pipedream, you can easily:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}