with RunPod and Microsoft Viva Goals?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
runpod: {
type: "app",
app: "runpod",
}
},
async run({steps, $}) {
const data = {
"query": `query GpuTypes { gpuTypes { id displayName memoryInGb } }`,
}
return await axios($, {
method: "post",
url: `https://api.runpod.io/graphql`,
headers: {
"Content-Type": `application/json`,
},
params: {
api_key: `${this.runpod.$auth.api_key}`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_viva_goals: {
type: "app",
app: "microsoft_viva_goals",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/beta/employeeExperience/goals/exportJobs`,
headers: {
Authorization: `Bearer ${this.microsoft_viva_goals.$auth.oauth_access_token}`,
},
})
},
})