Customer experience data in one powerful, easy-to-use platform
Emit new events when native mobile crash events occur. See the docs here
Emit new events when new note created. See the docs here
Emit new events when segment treshold alerts occur. See the docs here
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation
Updates a record if recordId
is provided or adds a record to a table.
The Fullstory API unlocks a treasure trove of user session data, enabling developers to automate deep insights into customer experiences on their digital platforms. Leveraging this API on Pipedream allows you to craft custom workflows that respond to specific user interactions, seamlessly integrate session insights with other tools, and trigger actions based on user behavior metrics. It's a boon for teams aiming to enhance user experience, address pain points, and bolster conversion rates.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fullstory: {
type: "app",
app: "fullstory",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.fullstory.com/operations/v1`,
headers: {
"Authorization": `Basic ${this.fullstory.$auth.api_key}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})