Streamline your business from end to end with ConnectWise PSA.
Creates a Step Function State Machine to publish a message to an SNS topic at a specific timestamp. The SNS topic delivers the message to this Pipedream source, and the source emits it as a new event.
Creates an SNS topic in your AWS account. Messages published to this topic are emitted from the Pipedream source.
The source subscribes to all emails delivered to a specific domain configured in AWS SES. When an email is sent to any address at the domain, this event source emits that email as a formatted event. These events can trigger a Pipedream workflow and can be consumed via SSE or REST API.
Emit new event when a new contact is created in Connectwise.
Emit new event when a new project is created in Connectwise.
Creates a new company in Connectwise. See the documentation
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}`,
},
})
},
})
The AWS API unlocks endless possibilities for automation with Pipedream. With this powerful combo, you can manage your AWS services and resources, automate deployment workflows, process data, and react to events across your AWS infrastructure. Pipedream offers a serverless platform for creating workflows triggered by various events that can execute AWS SDK functions, making it an efficient tool to integrate, automate, and orchestrate tasks across AWS services and other apps.
import AWS from 'aws-sdk'
export default defineComponent({
props: {
aws: {
type: "app",
app: "aws",
}
},
async run({steps, $}) {
const { accessKeyId, secretAccessKey } = this.aws.$auth
/* Now, pass the accessKeyId and secretAccessKey to the constructor for your desired service. For example:
const dynamodb = new AWS.DynamoDB({
accessKeyId,
secretAccessKey,
region: 'us-east-1',
})
*/
},
})