The Fully Managed Event Streaming Platform
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Emit new events when collaborators are added to a repo
Find issues and pull requests by state and keyword. See docs here
Create or update a file in a repository. This will replace an existing file. See docs here
The Keen API lets you easily build custom analytics tools and applications.
With Keen, you can collect data from anywhere, analyze it in minutes, and
visualize it in beautiful charts and dashboards.
Some examples of what you can build with the Keen API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
keen: {
type: "app",
app: "keen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.keen.io/3.0/projects/${this.keen.$auth.projectId}/events`,
params: {
api_key: `${this.keen.$auth.apiKey}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})