ProAbono is the smart subscription management software that automates your daily routine.
Emit new event when a new customer is created. See the documentation
Emit new event when a new offer is created. See the documentation
Emit new event when a new subscription is created. See the documentation
Creates a new customer or updates an existing one in the ProAbono system. See the documentation
Adds a product or products to a custom collection or collections. See the docs
Initializes a new subscription for a customer in the ProAbono system. See the documentation
ProAbono is a service built to manage subscription billing with fine-grained control over pricing, features, customers, and usage. With the ProAbono API, Pipedream can be your automation partner to streamline subscription operations. Use cases include synchronizing customer data, updating subscription details, and managing billing events. Pipedream's serverless platform allows you to trigger workflows on schedule, by webhook, or via other app events, making it ideal for integrating with ProAbono to handle complex subscription logic.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
proabono: {
type: "app",
app: "proabono",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.proabono.$auth.api_endpoint}/v1/Customers`,
headers: {
"Accept": `application/json`,
},
auth: {
username: `${this.proabono.$auth.agent_key}`,
password: `${this.proabono.$auth.api_key}`,
},
})
},
})
The Shopify Admin REST & GraphQL API unleashes a myriad of possibilities to automate and enhance online store operations. It provides programmatic access to Shopify functionalities, allowing users to manage products, customers, orders, and more. Leveraging the Shopify Admin API within Pipedream, developers can create custom workflows that automate repetitive tasks, sync data across platforms, and respond dynamically to events in Shopify.
This integration can be used as a custom app on your store, or for automating actions on behalf of merchants through your Shopify app.
Looking for integrating into the Shopify Partner API for your apps, themes or referrals? Check out our Shopify Partner API integration.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
shopify_developer_app: {
type: "app",
app: "shopify_developer_app",
}
},
async run({steps, $}) {
const data = {
"query": `{
shop {
id
name
email
}
}`,
}
return await axios($, {
method: "post",
url: `https://${this.shopify_developer_app.$auth.shop_id}.myshopify.com/admin/api/2024-04/graphql.json`,
headers: {
"X-Shopify-Access-Token": `${this.shopify_developer_app.$auth.access_token}`,
"Content-Type": `application/json`,
},
data,
})
},
})