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}`,
}
})
},
})
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
Mintlify uses API keys for authentication. When you connect your Mintlify account, Pipedream securely stores the keys so you can easily authenticate to Mintlify APIs in both code and no-code steps.