with Airweave and Microsoft Dynamics 365 Sales?
Emit new event when the ownership of an account changes.
Emit new event when an account is activated or deactivated.
Emit new event when a contact is added to an account.
Emit new event when a new task or activity is created for an account.
Emit new event when a new account is created.
Create a new Airweave collection. Collections are logical groups of data sources that provide unified search capabilities. The newly created collection is initially empty until you add source connections to it. See the documentation
Delete a collection and all associated data. This permanently removes the collection including all synced data and source connections. This action cannot be undone. See the documentation
Retrieve details of a specific collection by its readable ID. See the documentation
List all available data source connectors. These are the types of integrations Airweave can connect to (e.g., GitHub, Slack, Google Drive, PostgreSQL, etc.). See the documentation
Create a custom entity. See the documentation
import { AirweaveSDKClient } from "@airweave/sdk";
export default defineComponent({
props: {
airweave: {
type: "app",
app: "airweave",
}
},
async run({steps, $}) {
const client = new AirweaveSDKClient({
apiKey: this.airweave.$auth.api_key,
base_url: this.airweave.$auth.base_url
});
return await client.collections.list({
skip: 1,
limit: 1
});
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_dynamics_365_sales: {
type: "app",
app: "microsoft_dynamics_365_sales",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.microsoft_dynamics_365_sales.$auth.api_url}/api/data/v9.2/WhoAmI`,
headers: {
Authorization: `Bearer ${this.microsoft_dynamics_365_sales.$auth.oauth_access_token}`,
"odata-maxversion": `4.0`,
"odata-version": `4.0`,
"content-type": `application/json`,
},
})
},
})