Spondyr

Spondyr is an API that helps developers quickly integrate correspondence template management and distribution functionality into their applications.

Integrate the Spondyr API with the ServiceNow API

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

Create Table Record with ServiceNow API on New Spondyr Processed from Spondyr API
Spondyr + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New Spondyr Processed from Spondyr API
Spondyr + ServiceNow
 
Try it
Get Table Records with ServiceNow API on New Spondyr Processed from Spondyr API
Spondyr + ServiceNow
 
Try it
Update Table Record with ServiceNow API on New Spondyr Processed from Spondyr API
Spondyr + ServiceNow
 
Try it
New Spondyr Processed from the Spondyr API

Emit new event when a spondyr is processed. See docs here

 
Try it
Create Spondyr with the Spondyr API

Generate and optionally deliver correspondence. See the docs here

 
Try it
Create Table Record with the ServiceNow API

Inserts one record in the specified table.

 
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
Get Table Records with the ServiceNow API

Retrieves multiple records for the specified table.

 
Try it
Update Table Record with the ServiceNow API

Updates the specified record with the name-value pairs included in the request body.

 
Try it

Overview of Spondyr

The Spondyr API, known as MailboxValidator, is a tool designed to clean and verify email lists, ensuring that businesses can keep their email marketing databases free of invalid, inactive, or disposable email addresses. By integrating Spondyr with Pipedream, you can automate the process of maintaining a high-quality email list, triggering email validation workflows, and integrating with other services to enhance user management, campaign effectiveness, and overall data hygiene.

Connect Spondyr

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: {
    spondyr: {
      type: "app",
      app: "spondyr",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://client.spondyr.io/api/v1.0.0/TransactionTypes`,
      params: {
        APIKey: `${this.spondyr.$auth.api_key}`,
        ApplicationToken: `${this.spondyr.$auth.app_token}`,
      },
    })
  },
})

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