Craftboxx: Streamlining craftsmen's work with our innovative software. Offering job scheduling, documentation, and time recording tools.
Go to siteThe Craftboxx API allows users to integrate various features of the Craftboxx project management solution into their workflows. With this API, you can automate tasks related to project planning, resource allocation, time tracking, and document management. On Pipedream, you can tap into the Craftboxx API to create customized, serverless workflows that respond to events in real time. This enables businesses to streamline operations, reduce manual data entry, and improve coordination between teams.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
craftboxx: {
type: "app",
app: "craftboxx",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.craftboxx.de/my/employee`,
headers: {
Authorization: `Bearer ${this.craftboxx.$auth.oauth_access_token}`,
"Accept": `*/*`,
},
})
},
})
Craftboxx Project Sync with Google Sheets: Automate the process of syncing project details and updates from Craftboxx to a Google Sheet. Anytime a project is updated or a new project is created in Craftboxx, the workflow triggers and updates the corresponding Google Sheet.
Time Tracking Alerts via Slack: Set up a workflow that monitors time tracking entries in Craftboxx. When a certain threshold of hours is logged on a project, the workflow sends an alert to a designated Slack channel. This ensures project managers are informed and can keep projects on track.
Invoice Generation with QuickBooks: Create an automated workflow that generates invoices in QuickBooks whenever a project reaches completion in Craftboxx. The workflow would pull necessary details from Craftboxx and populate them in a new QuickBooks invoice, streamlining the billing process.
Emit new event when a new appointment is created in Craftboxx. See the documentation
Emit new event when a new customer is created in Craftboxx. See the documentation
Emit new event when a new project is created in Craftboxx. See the documentation
Creates a new customer along with their mailing address in Craftboxx. See the documentation
Applies updates to a project and its corresponding appointment in Craftboxx. See the documentation
Craftboxx uses OAuth authentication. When you connect your Craftboxx account, Pipedream will open a popup window where you can sign into Craftboxx and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Craftboxx API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://api.craftboxx.de/auth/create-token
Accept: */*
email={{custom_fields.email}}
&
password={{custom_fields.password}}