Run your entire business with a single solution
Creates a new customer. See the documentation
Retrieves a sales order by ID. See the documentation
Updates an existing customer. See the documentation
The Microsoft Dynamics 365 Business Central API enables you to streamline business processes by automating tasks and integrating with other services. With this API, you can access Dynamics 365 Business Central data such as financials, sales, service, and operations. It's perfect for creating custom workflows in Pipedream that can manipulate data, synchronize information across platforms, generate reports, and notify team members of important events.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dynamics_365_business_central_api: {
type: "app",
app: "dynamics_365_business_central_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/beta/me`,
headers: {
Authorization: `Bearer ${this.dynamics_365_business_central_api.$auth.oauth_access_token}`,
},
})
},
})
Namely is a Human Resources Information System (HRIS) designed to simplify HR, payroll, benefits, and talent management. By leveraging the Namely API on Pipedream, you can automate employee data synchronization across various platforms, streamline HR operations by triggering workflows based on employee lifecycle events, and even analyze workforce data to gain insights. It's a potent tool for HR professionals looking to integrate their HR tech stack and automate repetitive tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
namely: {
type: "app",
app: "namely",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.namely.$auth.subdomain}.namely.com/api/v1/profiles/me`,
headers: {
Authorization: `Bearer ${this.namely.$auth.oauth_access_token}`,
},
})
},
})