SatuitCRM is the industry-leading asset management CRM software for buy-side investment professionals including Institutional Asset Managers, Private Equity, Wealth Managers, Hedge Funds, and Alternative Investments.
Get a URL and emit the full HTTP event on every request (including headers and query parameters). You can also configure the HTTP response code, body, and more.
Get a URL and emit the HTTP body as an event on every request
Emit new event when a new activity is created in Satuit. See the documentation
Emit new event each time a new contact is created in Satuit. See the documentation
Emit new event when a new opportunity is created in Satuit. See the documentation
Creates a new business within the Satuit platform. See the documentation
Creates a new dealflow within the Satuit platform, setting up a new series of business interactions. See the documentation
Searches for a specific contact within the Satuit platform using an email address as the key identifier. See the documentation
Send an HTTP request using any method and URL. Optionally configure query string parameters, headers, and basic auth.
Send an HTTP GET request to any URL. Optionally configure query string parameters, headers and basic auth.
The Satuit API enables seamless integration of asset management and CRM functionalities into various business processes. With it, you can automate tasks such as data synchronization, report generation, and client management. Pipedream, with its serverless execution model, allows you to connect Satuit to hundreds of other apps to create powerful workflows without managing any infrastructure. You could, for instance, trigger a workflow with a new database entry, process the data within Pipedream, and then use the Satuit API to update customer records or create tasks for follow-ups.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
satuit: {
type: "app",
app: "satuit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.satuit.$auth.environment}.satuitcrm.com/${this.satuit.$auth.sitename}/api/v1/account`,
headers: {
Authorization: `Bearer ${this.satuit.$auth.oauth_access_token}`,
},
})
},
})
Build, test, and send HTTP requests without code using your Pipedream workflows. The HTTP / Webhook action is a tool to build HTTP requests with a Postman-like graphical interface.
Define the target URL, HTTP verb, headers, query parameters, and payload body without writing custom code.
This action can also use your connected accounts with third-party APIs. Selecting an integrated app will automatically update the request’s headers to authenticate with the app properly, and even inject your token dynamically.
Pipedream integrates with thousands of APIs, but if you can’t find a Pipedream integration simply use Environment Variables in your request headers to authenticate with.
The HTTP/Webhook action exports HTTP response data for use in subsequent workflow steps, enabling easy data transformation, further API calls, database storage, and more.
Response data is available for both coded (Node.js, Python) and no-code steps within your workflow.
// To use any npm package on Pipedream, just import it
import axios from "axios"
export default defineComponent({
async run({ steps, $ }) {
const { data } = await axios({
method: "GET",
url: "https://pokeapi.co/api/v2/pokemon/charizard",
})
return data.species
},
})