Act! 365

Act! 365 puts essential sales and marketing tools in your hands to close more deals, find new leads, and grow your business. The perfect Microsoft® Office 365 companion, stay productive from your inbox, the app—or wherever work takes you.

Integrate the Act! 365 API with the Formatting API

Setup the Act! 365 API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Act! 365 and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Act! 365

The Act! 365 API is a potent tool for managing customer relationships by interacting programmatically with the Act! 365 CRM platform. With Pipedream, you can harness this API to automate interactions with customer data, streamline sales processes, and enhance customer engagement through personalized communications. The API allows you to create, retrieve, update, and delete records such as contacts, companies, opportunities, and activities, paving the way for a vast array of automated workflows that connect Act! 365 with other apps and services to fuel business growth, save time, and reduce manual toil.

Connect Act! 365

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    act_365: {
      type: "app",
      app: "act_365",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.act365.com/act/api/contacts`,
      auth: {
        username: `${this.act_365.$auth.api_key}`,
        password: `${this.act_365.$auth.developer_key}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})