with Rumi AI and Pinterest?
Emit new events when new pins are created on a board or board section. See the docs here and here
Emit new events when a session is completed. See the documentation
Add access to a session for specific email addresses or domains. See the documentation
Stream an AI query against session memories. See the documentation
Get information about the current authenticated user. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rumi_ai: {
type: "app",
app: "rumi_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rumi.ai/v1.0/users/me`,
headers: {
Authorization: `Bearer ${this.rumi_ai.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})