Tookan is an off the shelf solution to manage and track, field workforces that enable on-demand deliveries.
Go to siteThe Tookan API allows for the automation and streamlining of delivery and field services. By integrating with Pipedream, users can trigger workflows based on events within Tookan, such as new task creation, task status updates, or agent alerts. This enables businesses to connect Tookan with other apps and services, automating notifications, data synchronization, and logistics operations, leading to improved coordination, customer satisfaction, and operational efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tookan: {
type: "app",
app: "tookan",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.tookan.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://api.tookanapp.com/v2/get_user_details`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
Task Completion to Customer SMS Notification: When a delivery task is marked as completed in Tookan, trigger a workflow on Pipedream that sends an SMS to the customer via Twilio, informing them of the delivery completion.
New Tookan Task to Google Calendar Event: For every new task created in Tookan, use Pipedream to create a corresponding event in Google Calendar, helping to keep track of deliveries or service appointments in a shared calendar.
Tookan Agent GPS Update to Slack Notification: Each time an agent's GPS location is updated in Tookan, trigger a Pipedream workflow that sends a real-time notification to a Slack channel, providing live updates on agent location for improved team awareness and coordination.
Tookan uses API keys for authentication. When you connect your Tookan account, Pipedream securely stores the keys so you can easily authenticate to Tookan APIs in both code and no-code steps.
To retrieve your API key,
Navigate to your Tookan account and sign in
Go to “Settings” > “API Keys”