with n8n.io and Keycloak?
Emit new event when a new event is created. See the documentation
Create a new user in Keycloak. The username must be unique. See the documentation
The n8n.io API provides a platform for automating workflows in a node-based structure that allows for integrations across various services and apps. Leveraging this API within Pipedream enables you to orchestrate complex operations, connect disparate systems, and trigger actions conditionally, transforming and passing data between services without writing extensive code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
n8n_io: {
type: "app",
app: "n8n_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.n8n_io.$auth.domain}.app.n8n.cloud/api/v1/workflows`,
headers: {
"Accept": `application/json`,
"X-N8N-API-KEY": `${this.n8n_io.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
keycloak: {
type: "app",
app: "keycloak",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.keycloak.$auth.url}/admin/realms`,
headers: {
Authorization: `Bearer ${this.keycloak.$auth.oauth_access_token}`,
},
})
},
})