with Twin and Nusii Proposals?
Browse the internet with an AI web navigation agent that can find information for you. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
twin: {
type: "app",
app: "twin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.twin.so/tasks`,
headers: {
"x-api-key": `${this.twin.$auth.api_key}`,
},
})
},
})
The Nusii Proposals API enables users to automate and integrate their proposal workflow with other tools and services. With this API, you can create, send, and manage proposals, keep track of their status, and handle clients efficiently. Leveraging Pipedream's capabilities, you can construct workflows that respond to events in Nusii, like a new proposal acceptance, or trigger actions in Nusii based on activities in other apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nusii_proposals: {
type: "app",
app: "nusii_proposals",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.nusii.com/api/v2/proposals`,
headers: {
"Authorization": `Token token=${this.nusii_proposals.$auth.api_token}`,
"User-Agent": `@PipedreamHQ/pipedream v0.1`,
},
})
},
})