Managed, standards-based, and healthcare data platform
Creates a new customer. See the documentation
Retrieves a sales order by ID. See the documentation
Updates an existing customer. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
azure_api_for_fhir: {
type: "app",
app: "azure_api_for_fhir",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.azure_api_for_fhir.$auth.account_name}.azurehealthcareapis.com/Patient`,
headers: {
Authorization: `Bearer ${this.azure_api_for_fhir.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})