We help DevOps run open source based perf testing on any website, app or API at massive scale to validate performance
Emit new event when a specified property is provided or updated on a company. See the documentation
Emit new event when a specified property is provided or updated on a contact. See the documentation
Emit new event when a specified property is provided or updated on a deal. See the documentation
Creates a new project in a specific workspace. See the documentation
Adds a contact to a specific static list. See the documentation
List projects from a specified workspace in BlazeMeter. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
List all workspaces associated with the specified account. See the documentation
The BlazeMeter API allows you to automate performance testing by integrating with Pipedream's serverless platform. You can trigger tests, fetch test results, and manage your testing environment programmatically. With Pipedream, connecting BlazeMeter with other apps and services streamlines performance data analysis and alerts, enhancing continuous integration and deployment (CI/CD) pipelines.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
blazemeter: {
type: "app",
app: "blazemeter",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://a.blazemeter.com/api/v4/user`,
auth: {
username: `${this.blazemeter.$auth.api_key}`,
password: `${this.blazemeter.$auth.api_secret}`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})