Practice management software for accountants and bookkeepers from £29 per user, per month. Officially the friendliest software of the year.
Create a new channel in Microsoft Teams. See the docs here
Get the list of shift instances for a team. See the documentation
The Senta API allows you to automate and integrate practice management tasks within the Senta platform. Leveraging Pipedream's capabilities, you can create workflows that streamline client onboarding, automate communication, task management, and synchronize data with other services. With Pipedream's serverless platform, these workflows can be triggered by various events, such as incoming emails, schedule timings, or actions from other apps, offering a seamless way to enhance your practice management operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
senta: {
type: "app",
app: "senta",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.senta.$auth.subdomain}.senta.co/api/jobs`,
headers: {
"x-auth": `${this.senta.$auth.api_key}`,
"accept": `application/json`,
},
params: {
cid: `{{your_client_id}}`,
},
})
},
})
The Microsoft Teams API on Pipedream allows you to automate tasks, streamline communication, and integrate with other services to enhance the functionality of Teams as a collaboration hub. With this API, you can send messages to channels, orchestrate complex workflows based on Teams events, and manage Teams' settings programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams: {
type: "app",
app: "microsoft_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_teams.$auth.oauth_access_token}`,
},
})
},
})