with Devin and Schedule?
Create a new knowledge object to share information with Devin. See the documentation
Create a new session with Devin. See the documentation
Delete an existing knowledge object. See the documentation
Retrieve details about an existing session. See the documentation
Retrieve a list of all knowledge objects. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
devin: {
type: "app",
app: "devin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.devin.ai/v1/sessions`,
headers: {
Authorization: `Bearer ${this.devin.$auth.api_key}`,
},
params: {
limit: `100`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.