with agentOS and DevRev?
Creates a new comment on a work item in DevRev. See the documentation
Creates or updates a custom schema fragment in DevRev. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
agentos: {
type: "app",
app: "agentos",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://live-api.letmc.com/v4/appointments/${this.agentos.$auth.short_name}/company/branches/0/1000`,
params: {
api_key: `${this.agentos.$auth.api_key}`,
},
})
},
})
The DevRev API bridges the gap between developers and customers, enabling teams to interact with customer data, handle support issues, and integrate with various development workflows. Within Pipedream, you can wield this API to automate tasks like syncing customer feedback with your issue trackers, updating CRM records, or triggering custom notifications based on customer interactions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
devrev: {
type: "app",
app: "devrev",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.devrev.ai/dev-users.self`,
headers: {
"Authorization": `${this.devrev.$auth.personal_access_token}`,
},
})
},
})