SonarCloud is the leading online service for Code Quality & Security. Free analysis for open-source projects covering 24 languages.
Emit new event when a new analisys is completed.
Emits an event each time a sub-account is created in your master account
Emits an event each time a meeting starts in your Zoom account
Emits an event each time your master account or sub-account profile is updated
Register a participant for a meeting. See the docs here
Register a participant for a webinar. See the docs here
The SonarCloud API facilitates automated code quality checks and security vulnerability assessments. By integrating with Pipedream, developers can harness this power within serverless workflows, triggering actions based on code analysis results, monitoring project metrics, and automating project management tasks. The API allows for enhanced productivity by connecting code quality data with other services and tools, streamlining the development process.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sonarcloud: {
type: "app",
app: "sonarcloud",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.sonarcloud.$auth.token}@sonarcloud.io/api/users/search`,
})
},
})
The Zoom Admin API lets you harness the extensive capabilities of Zoom for automation and integration, right within Pipedream. Automate user management, track Zoom rooms, monitor webinars and meetings, and customize your workflow to respond dynamically to events like new participants or ended meetings. With these APIs and the power of Pipedream, you can streamline administrative tasks, extract valuable insights, and sync Zoom activities with other services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoom_admin: {
type: "app",
app: "zoom_admin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.zoom.us/v2/users/me`,
headers: {
Authorization: `Bearer ${this.zoom_admin.$auth.oauth_access_token}`,
},
})
},
})