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}`,
},
})
},
})
Create a new item or collection in Nuclino. See the documentation
Search for items or collections in Nuclino. See the documentation
Update an existing item or collection in Nuclino. See the documentation
Nuclino uses API keys for authentication. When you connect your Nuclino account, Pipedream securely stores the keys so you can easily authenticate to Nuclino APIs in both code and no-code steps.