listmonk

listmonk is a self-hosted, high performance mailing list and newsletter manager. It comes as a standalone binary and the only dependency is a Postgres database.

Integrate the listmonk API with the ServiceNow API

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

Create Table Record with ServiceNow API on New Subscriber Added from listmonk API
listmonk + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New Subscriber Added from listmonk API
listmonk + ServiceNow
 
Try it
Get Table Records with ServiceNow API on New Subscriber Added from listmonk API
listmonk + ServiceNow
 
Try it
Update Table Record with ServiceNow API on New Subscriber Added from listmonk API
listmonk + ServiceNow
 
Try it
New Subscriber Added from the listmonk API

Emit new event when a new subscriber is added. See the documentation

 
Try it
Create Campaign with the listmonk API

Creates a new campaign in Listmonk. See the documentation

 
Try it
Create Table Record with the ServiceNow API

Inserts one record in the specified table.

 
Try it
Create List with the listmonk API

Creates a new list in Listmonk. 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
Create Subscriber with the listmonk API

Create a new subscriber in Listmonk. See the documentation

 
Try it

Overview of listmonk

The listmonk API enables you to interact programmatically with the listmonk platform, which specializes in managing mailing lists and sending out newsletters. Using this API, you can automate subscriber management, campaign dispatching, and performance tracking. When you integrate listmonk with Pipedream, you can create powerful workflows that react to events from other apps, process data, and use that data to trigger actions within listmonk.

Connect listmonk

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

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}`,
      },
    })
  },
})