with MISP and Proposify?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
misp: {
type: "app",
app: "misp",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.misp.$auth.server_url}/admin/users`,
headers: {
"authorization": `${this.misp.$auth.api_key}`,
"content-type": `application/json`,
"accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
proposify: {
type: "app",
app: "proposify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://connect.proposify.com/user`,
headers: {
Authorization: `Bearer ${this.proposify.$auth.oauth_access_token}`,
},
})
},
})