Version control repository hosting service
Emit new event when a new commit is pushed to a branch. See docs here
Emit new event when a new pull request is created in a repository. See docs here
Emit new event when a new branch is created. See docs here
Emit new event when a commit receives a comment. See docs here
Emit an event for each new or modified record in a table
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs.
Retrieve records from a table with automatic pagination. Optionally sort and filter results.
With the BitBucket API, you can programmatically interact with BitBucket, via
REST calls. This allows you to build apps and integrations on top of BitBucket,
customize and automate your workflows, and much more.
Here are some examples of what you can build with the BitBucket API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bitbucket: {
type: "app",
app: "bitbucket",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bitbucket.org/2.0/user`,
headers: {
Authorization: `Bearer ${this.bitbucket.$auth.oauth_access_token}`,
},
})
},
})
Using the Airtable API, you can build applications that can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable: {
type: "app",
app: "airtable",
},
baseId: {
type: "$.airtable.baseId",
appProp: "airtable",
},
tableId: {
type: "$.airtable.tableId",
baseIdProp: "baseId",
},
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/${this.baseId}/${this.tableId}`,
headers: {
Authorization: `Bearer ${this.airtable.$auth.api_key}`,
"accept": `application/json`,
},
})
}
})