Streamline your business from end to end with ConnectWise PSA.
Emit new event when a new contact is created in Connectwise.
Emit new event when a new project is created in Connectwise.
Emit new event when a new ticket is created in Connectwise.
Creates a new company in Connectwise. See the documentation
Create a HTML or a plain text email template. See the docs
Creates a new contact in Connectwise. See the documentation
Creates a new ticket in Connectwise. See the documentation
ConnectWise PSA (Professional Services Automation) API offers a powerful avenue for managing business processes related to technology services. By integrating with ConnectWise PSA via Pipedream, developers can automate complex workflows, synchronize data across various platforms, and enhance operational efficiencies. This API allows for control over modules like service tickets, project management, and account management, essentially streamlining operations and making data management more effective.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
connectwise_psa: {
type: "app",
app: "connectwise_psa",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.connectwise_psa.$auth.environment}/v4_6_release/apis/3.0/service/boards`,
headers: {
"clientId": `${this.connectwise_psa.$auth.client_id}`,
},
auth: {
username: `${this.connectwise_psa.$auth.company_id}+${this.connectwise_psa.$auth.public_key}`,
password: `${this.connectwise_psa.$auth.private_key}`,
},
})
},
})
Amazon Simple Email Service (SES) is a powerful cloud-based email sending service designed to help digital marketers and application developers send marketing, notification, and transactional emails. With the SES API, you can reliably send emails at scale, manage sender reputations, view email sending statistics, and maintain a high deliverability rate. Leveraging Pipedream's capabilities, you can integrate SES seamlessly into serverless workflows, automate email responses based on triggers from other apps, and analyze the effectiveness of your email campaigns by connecting to data analytics platforms.
module.exports = defineComponent({
props: {
amazon_ses: {
type: "app",
app: "amazon_ses",
}
},
async run({steps, $}) {
const AWS = require("aws-sdk")
const { accessKeyId, secretAccessKey } = this.amazon_ses.$auth
const ses = new AWS.SES({
accessKeyId,
secretAccessKey,
region: 'us-east-1',
})
const sesParams = {
Destination: {
ToAddresses: ["<your email here>"],
},
Message: {
Body: {
Html: {
Charset: "UTF-8",
Data: "<h1>This is a test</h1>",
},
Text: {
Charset: "UTF-8",
Data: "This is a test",
}
},
Subject: {
Charset: "UTF-8",
Data: "Test email",
}
},
Source: "<your from address here",
};
this.resp = await ses.sendEmail(sesParams).promise()
},
})