The CRM to Supercharge Sales Teams. On the road. In the office. From home.
Emit new event when a new activity is created. See the documentation
Emit new event when a new contact is created. See the documentation
Emit new event when a new opportunity is created. See the documentation
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Creates a new business opportunity in ForceManager. See the documentation
Search for an existing contact by email, name, or phone. See the documentation
Find issues and pull requests by state and keyword. See the documentation
Returns a list of all users in the app. See the documentation
The ForceManager API allows for robust interaction with ForceManager's CRM platform. It facilitates access to data on sales, customer interactions, and performance metrics. With Pipedream, you can automate actions based on this data, integrate with other services, and create custom workflows that leverage events and triggers from ForceManager to streamline sales processes and data management. Interacting with the ForceManager API through Pipedream allows you to connect CRM data with other applications such as email, calendars, support systems, and more, creating a seamless flow of information across your business tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
forcemanager: {
type: "app",
app: "forcemanager",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.forcemanager.com/api/v4/users`,
headers: {
"Content-Type": `application/json`,
"Accept": `*/*`,
"X-Session-Key": `${this.forcemanager.$auth.oauth_access_token}`,
},
})
},
})
The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})