Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Acknowledges an incident, marking it as acknowledged in Better Stack. See the documentation
Initiates an incident that signals the team. See the documentation
Brings a closure to an incident by resolving it with optional resolution details. See the documentation
The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typeform: {
type: "app",
app: "typeform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.typeform.com/me`,
headers: {
Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
},
})
},
})
The Better Stack API allows you to enhance your app's capabilities with powerful monitoring, logging, and analytics tools. By connecting to the API through Pipedream, you can create custom, serverless workflows that automate the ingestion, analysis, and response to your app's operational data. Leverage real-time insights, set up alerts, and integrate with various other services to maintain optimal performance and swiftly troubleshoot issues.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
better_stack: {
type: "app",
app: "better_stack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://uptime.betterstack.com/api/v2/monitors`,
headers: {
Authorization: `Bearer ${this.better_stack.$auth.uptime_token}`,
},
})
},
})