With Baserow, you can easily build custom software for managing data. Examples include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
baserow: {
type: "app",
app: "baserow",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.baserow.$auth.base_api_url}/database/rows/table/[TABLE_ID]/`,
headers: {
"Authorization": `Token ${this.baserow.$auth.token}`,
},
})
},
})
Baserow uses API keys for authentication. When you connect your Baserow account, Pipedream securely stores the keys so you can easily authenticate to Baserow APIs in both code and no-code steps.
Baserow uses a simple token based authentication. You need to generate at least one API token in your settings.