Fullstory provides APIs that allow you to build a variety of features into your web or mobile app. Here are some examples of what you can build:
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}`,
},
})
},
})
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
Fullstory uses API keys for authentication. When you connect your Fullstory account, Pipedream securely stores the keys so you can easily authenticate to Fullstory APIs in both code and no-code steps.
Find your API key under Settings > Integrations & API Keys