with Ablefy (formerly elopage) and ServiceNow?
Emit new event when a new webhook event occurs. See the documentation by importing "https://api.myablefy.com/api/swagger_doc/" into the Swagger editor
Create a new order. See the documentation by importing "https://api.myablefy.com/api/swagger_doc/" into the Swagger editor
Inserts one record in the specified table. See the documentation
List all funnels. See the documentation by importing "https://api.myablefy.com/api/swagger_doc/" into the Swagger editor
Deletes the specified record from a table. See the documentation
List all products. See the documentation by importing "https://api.myablefy.com/api/swagger_doc/" into the Swagger editor
The elopage API allows you to automate processes around selling digital products, courses, memberships, and tickets. It provides endpoints to manage products, payments, users, and subscriptions. With Pipedream's serverless workflows, you can construct automations that respond to elopage events or orchestrate complex tasks involving multiple systems, streamlining your digital commerce operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
elopage: {
type: "app",
app: "elopage",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.myablefy.com/api/funnels/`,
params: {
key: `${this.elopage.$auth.api_key}`,
secret: `${this.elopage.$auth.api_secret}`,
},
})
},
})
The ServiceNow API lets developers access and manipulate records, manage workflows, and integrate with other services on its IT service management platform. These capabilities support automating tasks, syncing data across platforms, and boosting operational efficiencies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
servicenow: {
type: "app",
app: "servicenow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
headers: {
Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
},
})
},
})