with Pinterest and Keboola?
Emit new events when new pins are created on a board or board section. See the docs here and here
Get detailed information about a specific bucket in Keboola. See the documentation
Get detailed information about a specific table. See the documentation
Lists all tables in a specified bucket. See the documentation
Lists all buckets in your Keboola project. See the documentation
The Pinterest API opens a portal to interact programmatically with Pinterest's rich data, including boards, pins, and user information. By leveraging this API on Pipedream, you can automate actions like posting new pins, extracting pin data for analysis, and synchronizing Pinterest content with other platforms. The potential extends to marketing optimization, content management, and audience engagement, all automated and integrated within the Pipedream ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pinterest: {
type: "app",
app: "pinterest",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.pinterest.com/v5/user_account`,
headers: {
Authorization: `Bearer ${this.pinterest.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
keboola: {
type: "app",
app: "keboola",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.keboola.$auth.stack_endpoint}/v2/storage/buckets`,
headers: {
"x-storageapi-token": `${this.keboola.$auth.api_token}`,
"content-type": `multipart/form-data`,
},
params: {
include: `include`,
},
})
},
})