Beekeeper’s mobile platform is the single point of contact for your frontline workforce. We bring communications and tools together to increase productivity, agility, and safety.
Go to siteBeekeeper's API enables developers to access Beekeeper's features and data, including users, posts, and comments. With the API, developers can create applications that display Beekeeper data or allow Beekeeper users to interact with their data.
Some example applications that could be built using the Beekeeper API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
beekeeper: {
type: "app",
app: "beekeeper",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.beekeeper.$auth.subdomain}.beekeeper.io/api/2/config`,
headers: {
Authorization: `Bearer ${this.beekeeper.$auth.access_token}`,
},
})
},
})
Beekeeper uses API keys for authentication. When you connect your Beekeeper account, Pipedream securely stores the keys so you can easily authenticate to Beekeeper APIs in both code and no-code steps.
You can access your access_token
in the Beekeeper dashboard. Your subdomain appears in the URL you use to login: https://{subdomain}.beekeeper.io/login
.