EspoCRM

Open Source CRM. Easy to customize.

Integrate the EspoCRM API with the ServiceNow API

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

Create Table Record with ServiceNow API on New Changes (Instant) from EspoCRM API
EspoCRM + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New Changes (Instant) from EspoCRM API
EspoCRM + ServiceNow
 
Try it
Get Table Records with ServiceNow API on New Changes (Instant) from EspoCRM API
EspoCRM + ServiceNow
 
Try it
Update Table Record with ServiceNow API on New Changes (Instant) from EspoCRM API
EspoCRM + ServiceNow
 
Try it
New Changes (Instant) from the EspoCRM API

Emit new event upon the creation, update, deletion, or changes of any field in an entity type. See the documentation

 
Try it
Create Contact with the EspoCRM API

Creates a new contact in Espo CRM. See the documentation

 
Try it
Create Table Record with the ServiceNow API

Inserts one record in the specified table.

 
Try it
Create Task with the EspoCRM API

This component creates a new task in Espo CRM. See the documentation

 
Try it
Get Table Record By SysId with the ServiceNow API

Retrieves the record identified by the specified sys_id from the specified table.

 
Try it
List Accounts with the EspoCRM API

Retrieves a list of accounts from Espo CRM. See the documentation

 
Try it

Overview of EspoCRM

The EspoCRM API allows for robust interaction with your CRM data, enabling the automation of tasks, syncing data across platforms, and the enhancement of customer relationship management through customized workflows. By leveraging this API within Pipedream, you can design serverless workflows that react to CRM events, integrate with other services, and manipulate data to fit your business processes. Pipedream's no-code platform makes it straightforward to create, execute, and maintain these workflows, allowing you to focus on innovation rather than infrastructure.

Connect EspoCRM

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: {
    espocrm: {
      type: "app",
      app: "espocrm",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.espocrm.$auth.url}/api/v1/CurrencyRate`,
      headers: {
        "X-Api-Key": `${this.espocrm.$auth.api_key}`,
      },
    })
  },
})

Overview of ServiceNow

The ServiceNow API enables developers to tap into the robust capabilities of ServiceNow's IT service management platform. With the API, you can create, read, update, and delete records, manage workflows, and integrate with other services. By leveraging these capabilities, you can automate routine tasks, sync data across multiple platforms, and enhance operational efficiencies.

Connect ServiceNow

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: {
    servicenow: {
      type: "app",
      app: "servicenow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
      headers: {
        Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
      },
    })
  },
})