with npm and The Official Board?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
Export organization chart as PDF file. See the documentation
Export organization chart as XLSX file. See the documentation
Get executive biography information. See the documentation
Get organization chart information for a company. See the documentation
Search for company org chart identifier. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
the_official_board: {
type: "app",
app: "the_official_board",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.theofficialboard.com/rest/test/token`,
headers: {
"accept": `application/json`,
"token": `${this.the_official_board.$auth.api_token}`,
},
})
},
})