with Breeze and LetzAI?
Emit new event when a new image is created in LetzAI. See the documentation
Emit new event when a task is moved to another list. See documentation
Emit new event when a new image edit is created in LetzAI. See the documentation
Emit new event when a task's status is updated. See documentation
Creates an image edit task that modifies an existing image using inpainting or outpainting in LetzAI. See the documentation
Generates a new task within an existing project in breeze. See documentation
Creates a new image generation task from a text prompt in LetzAI. See the documentation
Searches for a specific project in breeze using the name. See documentation
Breeze is a project management tool designed to streamline task planning, collaboration, and tracking for teams. With the Breeze API, you can automate routine project management tasks, sync data with other tools, and create custom notifications to keep your team aligned. By leveraging Pipedream's serverless platform, you can connect Breeze to 3,000+ apps, set up complex workflows, and manipulate data in real-time—no server required.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
breeze: {
type: "app",
app: "breeze",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.breeze.pm/me.json`,
params: {
api_token: `${this.breeze.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
letzai: {
type: "app",
app: "letzai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.letz.ai/models`,
headers: {
Authorization: `Bearer ${this.letzai.$auth.api_key}`,
"page": `1`,
"limit": `10`,
},
})
},
})