with Trello and MusicBrainz?
Trello's API lets you craft workflows around managing boards, lists, cards, and users. With Pipedream, you can automate Trello tasks, like syncing cards with external databases, updating checklists, and posting notifications to other platforms. It enables seamless connection with other apps, fostering productivity by automating routine board operations, card management, and team notifications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
trello: {
type: "app",
app: "trello",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.trello.com/1/members/me`,
}, {
token: {
key: this.trello.$auth.oauth_access_token,
secret: this.trello.$auth.oauth_refresh_token,
},
oauthSignerUri: this.trello.$auth.oauth_signer_uri,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
musicbrainz: {
type: "app",
app: "musicbrainz",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://musicbrainz.org/oauth2/userinfo`,
headers: {
Authorization: `Bearer ${this.musicbrainz.$auth.oauth_access_token}`,
"user-agent": `@PipedreamHQ/pipedream v0.1 (support@pipedream.com)`,
},
})
},
})