with Axonaut and AltTextify?
Emit new event when new alt text is generated for an image. See the documentation
Creates a company. See documentation (Go to POST /api/v2/companies
)
Delete the generated alt text for a specific image using the asset ID. See the documentation
Creates a employee. See documentation (Go to POST /api/v2/employees
)
Updates a company. See documentation (Go to PATCH /api/v2/companies/{companYid}
)
Retrieve alt text for a previously submitted image using the asset ID. See the documentation
The Axonaut API enables interaction with Axonaut's CRM and ERP features, allowing you to manage customers, invoices, quotes, and more. By building workflows on Pipedream with the Axonaut API, you can automate repetitive tasks, sync data between different systems, and create custom, scalable solutions for your business needs. Connect Axonaut to numerous other services via Pipedream to streamline your sales, accounting, and operational processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
axonaut: {
type: "app",
app: "axonaut",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://axonaut.com/api/v2/me`,
headers: {
"userApiKey": `${this.axonaut.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
alttextify: {
type: "app",
app: "alttextify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.alttextify.net/api/v1/image`,
headers: {
"x-api-key": `${this.alttextify.$auth.api_key}`,
},
})
},
})