with Schedule and Mintlify?
Generates a response message from the assistant for the specified domain. See the documentation
Perform semantic and keyword searches across your documentation. See the documentation
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.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mintlify: {
type: "app",
app: "mintlify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mintlify.com/v1/agent/${this.mintlify.$auth.project_id}/jobs`,
headers: {
Authorization: `Bearer ${this.mintlify.$auth.admin_api_key}`,
}
})
},
})