Quickbase is the platform that businesses use to quickly turn ideas about better ways to work into apps that make them more efficient, informed and productive.
Go to siteThe Quickbase API enables developers to build business solutions quickly and efficiently. With it, you can quickly create custom databases and applications that support your organization. The API supports all the core features Quickbase has to offer, like records and fields, table-level authentication, and views and reports. All of these add up to the ability to build powerful solutions that solve real-world problems.
Below are some examples of what developers can build using the Quickbase API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
quickbase: {
type: "app",
app: "quickbase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.quickbase.com/v1/apps/brztjz2nz`,
headers: {
"QB-Realm-Hostname": `${this.quickbase.$auth.hostname}`,
"User-Agent": `@PipedreamHQ/pipedream v0.1`,
"Authorization": `QB-USER-TOKEN ${this.quickbase.$auth.user_token}`,
"Content-Type": `application/json`,
},
})
},
})
Quickbase uses API keys for authentication. When you connect your Quickbase account, Pipedream securely stores the keys so you can easily authenticate to Quickbase APIs in both code and no-code steps.
To get your User Token:
Your Hostname is 12345678
if your Quick Base URL is https://12345678.quickbase.com/