with Google Tasks and CATS?
Emit new event when an activity related to a cat is created.
Emit new event when a contact related to a cat is created.
Emit new event for each task added to Google Tasks. See the documentation
Emit new event for each task added or updated to Google Tasks. See the documentation
Creates a new task and adds it to the authenticated user's task lists. See the docs here
Adds a specific candidate to a job pipeline in CATS. See the documentation
Creates a new task list and adds it to the authenticated user's task lists. See the docs here
Create a new candidate in your CATS database. See the documentation
Deletes the authenticated user's specified task. See the docs here
The Google Tasks API allows you to manage and manipulate a user's tasks and task lists on Google Tasks directly from Pipedream. With this API, you can create, read, update, and delete tasks, as well as manage the lists themselves. This opens up possibilities for automating task management, syncing tasks with other systems, and creating custom task-based workflows that can increase productivity and ensure nothing falls through the cracks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_tasks: {
type: "app",
app: "google_tasks",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/tasks/v1/users/@me/lists`,
headers: {
Authorization: `Bearer ${this.google_tasks.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cats: {
type: "app",
app: "cats",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.catsone.com/v3/users`,
headers: {
"Authorization": `Token ${this.cats.$auth.api_key}`,
},
})
},
})