Close

Inside Sales Software CRM with Calling & Emailing

Integrate the Close API with the DaySchedule API

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

Create Event with DaySchedule API on New Opportunity from Close API
Close + DaySchedule
 
Try it
Create Event with DaySchedule API on New Custom Event from Close API
Close + DaySchedule
 
Try it
Create Event with DaySchedule API on New Lead from Close API
Close + DaySchedule
 
Try it
Create Event with DaySchedule API on New Lead Status Change from Close API
Close + DaySchedule
 
Try it
Create Lead with Close API on New Event Scheduled from DaySchedule API
DaySchedule + Close
 
Try it
New Custom Event from the Close API

Emit new event when configured type of events triggered, See all possibilities

 
Try it
New Event Scheduled from the DaySchedule API

Emit new event when a new event is added to the schedule.

 
Try it
New Lead from the Close API

Emit new event when a new Lead is created

 
Try it
New Event Updated from the DaySchedule API

Emit new event when an event is updated in the schedule.

 
Try it
New Lead Status Change from the Close API

Emit new event when a Lead status is changed

 
Try it
Create Lead with the Close API

Creates a lead, See the docs

 
Try it
Create Event with the DaySchedule API

Add a new event to the DaySchedule. See the documentation

 
Try it
Custom Action with the Close API

Makes an aribitrary call to Close API, See for all options.

 
Try it
Delete Event with the DaySchedule API

Remove an existing event from the DaySchedule. See the documentation

 
Try it
Update Event with the DaySchedule API

Modify an existing event in the DaySchedule. See the documentation

 
Try it

Overview of Close

The Close API provides access to a robust CRM platform, enabling users to automate sales processes, manage leads, and track communication history. Harnessing the Close API within Pipedream's ecosystem allows for the creation of custom, serverless workflows that can react in real-time to events, synchronize data across apps, and streamline sales operations. By leveraging Pipedream's capabilities, you can trigger actions based on Close events, manipulate Close data, and integrate with countless other services to amplify your CRM's functionality.

Connect Close

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: {
    close: {
      type: "app",
      app: "close",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.close.com/api/v1/me/`,
      auth: {
        username: `${this.close.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

Overview of DaySchedule

The DaySchedule API enables the automation of appointment scheduling tasks, allowing users to create, update, and manage appointments efficiently. With Pipedream, you can harness this API to integrate with various services, triggering workflows based on events like new bookings or cancellations. You can orchestrate data flows between DaySchedule and other apps you use for CRM, email marketing, customer support, or internal communication, streamlining the process of managing your calendar and client interactions.

Connect DaySchedule

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    dayschedule: {
      type: "app",
      app: "dayschedule",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.dayschedule.com/v1/me`,
      headers: {
        Authorization: `Bearer ${this.dayschedule.$auth.oauth_access_token}`,
      },
    })
  },
})