What do you want to automate

with Toolhouse and Azure API for FHIR?

Prompt, edit and deploy AI agents that connect to Toolhouse, Azure API for FHIR and 3,000+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Integrate the Toolhouse API with the Azure API for FHIR API
Setup the Toolhouse API trigger to run a workflow which integrates with the Azure API for FHIR API. Pipedream's integration platform allows you to integrate Toolhouse and Azure API for FHIR remarkably fast. Free for developers.

Connect Toolhouse

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    toolhouse: {
      type: "app",
      app: "toolhouse",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.toolhouse.ai/v1/agent-runs`,
      headers: {
        Authorization: `Bearer ${this.toolhouse.$auth.api_key}`,
      },
    })
  },
})

Connect Azure API for FHIR

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo