The Jibble API provides programmatic access to Jibble's time and attendance tracking features, allowing you to manage team timesheets, attendance, and work reports. Integrating the Jibble API with Pipedream opens up possibilities for automating routine tasks, syncing data across platforms, and triggering actions based on time tracking events. You can create workflows that respond to specific triggers like clock-ins and clock-outs, or schedule regular data syncs to maintain up-to-date records in other systems.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jibble: {
type: "app",
app: "jibble",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://workspace.prod.jibble.io/v1/People`,
headers: {
Authorization: `Bearer ${this.jibble.$auth.oauth_access_token}`,
"Content-Type": `application/json; charset=UTF-8`,
},
})
},
})
Automate Attendance Reports: Compile and send daily attendance reports by fetching data from Jibble at a scheduled time each day. The workflow could format the data and send it via email using the Gmail app, Slack for team notifications, or save it to Google Sheets for further analysis.
Synchronize Project Management Tools: Upon a clock-out event in Jibble, trigger a workflow to log the time spent on a task in a project management app like Trello or Asana. This would ensure that task tracking and time tracking are synced, offering live updates to project timelines and resource allocation.
Trigger Alerts for Overtime or Unusual Activity: Set up a workflow that monitors for overtime or irregular clock-in patterns. When detected, it triggers notifications to HR or management through SMS (using Twilio), email, or team communication platforms. This helps in maintaining compliance with work policies and addressing potential burnout issues promptly.
This is generic endpoint for getting time tracking reports. See the documentation.
Gets daily timsheets summary for given date range and given persons. May omit personIds parameters in query so it will return data for all member of the organization. See the documentation.
Jibble uses OAuth authentication. When you connect your Jibble account, Pipedream will open a popup window where you can sign into Jibble and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Jibble API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://identity.prod.jibble.io/connect/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{custom_fields.api_key_id}}
&
client_secret={{custom_fields.api_key_secret}}
&
grant_type=client_credentials
POST
https://identity.prod.jibble.io/connect/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{custom_fields.api_key_id}}
&
client_secret={{custom_fields.api_key_secret}}
&
grant_type=client_credentials