with Apify (OAuth) and Nuclino?
Emit new event when a selected Actor is run and finishes.
Emit new event when a new item or collection is created in Nuclino.
Emit new event when a selected task is run and finishes.
Emit new event when an item or collection is updated in Nuclino.
Create a new item or collection in Nuclino. See the documentation
Performs an execution of a selected Actor in Apify. See the documentation
Search for items or collections in Nuclino. See the documentation
Run a specific task and return its dataset items. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
apify_oauth: {
type: "app",
app: "apify_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.apify.com/v2/users/me`,
headers: {
Authorization: `Bearer ${this.apify_oauth.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nuclino: {
type: "app",
app: "nuclino",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.nuclino.com/v0/teams`,
headers: {
"authorization": `${this.nuclino.$auth.api_key}`,
},
})
},
})