Master Your Projects with Our Innovative Project Management Software.
Create a new task in a project in Kite Suite. See the documentation
Creates and appends blocks to the specified parent. See the documentation
Creates a page from a parent page. The only valid property is title. See the documentation
Sends a message to a user or project group using Kite Suite. See the documentation
The Kite Suite API enables you to automate and integrate your Kite Suite project management tasks seamlessly into Pipedream workflows. With this API, you can create, update, and manage projects, tasks, and teams, allowing for streamlined communication and coordination within your organization. By leveraging Pipedream's capabilities, you can connect Kite Suite with various other apps and services, triggering actions based on events, scheduling regular updates, or even processing data in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kite_suite: {
type: "app",
app: "kite_suite",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.kitesuite.com/api/v1/directory`,
headers: {
"api-token": `${this.kite_suite.$auth.api_token}`,
"workspace": `{{your_workspace_key}}`,
"Accept": `application/json`,
},
})
},
})
Notion's API allows for the creation, reading, updating, and deleting of pages, databases, and their contents within Notion. Using Pipedream's platform, you can build workflows that connect Notion with various other services to automate tasks such as content management, task tracking, and data synchronization. With Pipedream's serverless execution, you can trigger these workflows on a schedule, or by external events from other services, without managing any infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
notion: {
type: "app",
app: "notion",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.notion.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.notion.$auth.oauth_access_token}`,
"Notion-Version": `2021-08-16`,
},
})
},
})