with HigherGov and Miro Developer App?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
highergov: {
type: "app",
app: "highergov",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.highergov.com/api-external/people`,
params: {
api_key: `${this.highergov.$auth.api_key}`,
},
})
},
})
The Miro Developer App API lets you extend the functionality of Miro, an online collaborative whiteboarding platform. On Pipedream, you can automate interactions with Miro boards, such as creating or updating content, and extracting data for reporting or integration purposes. This can streamline collaboration and project management by automating repetitive tasks and connecting Miro with other tools and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
miro_custom_app: {
type: "app",
app: "miro_custom_app",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.miro.com/v2/boards`,
headers: {
Authorization: `Bearer ${this.miro_custom_app.$auth.access_token}`,
},
})
},
})