Raisely

Simple online fundraising for the worlds’ most ambitious campaigns 💜

Integrate the Raisely API with the ServiceNow API

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

Create Table Record with ServiceNow API on Donation Refunded from Raisely API
Raisely + ServiceNow
 
Try it
Create Table Record with ServiceNow API on Donation Succeeded from Raisely API
Raisely + ServiceNow
 
Try it
Create Table Record with ServiceNow API on New User Created from Raisely API
Raisely + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on Donation Refunded from Raisely API
Raisely + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on Donation Succeeded from Raisely API
Raisely + ServiceNow
 
Try it
Donation Refunded from the Raisely API

Emit new event when a donation has been refunded.

 
Try it
Donation Succeeded from the Raisely API

Emit new event when a donation has succeeded.

 
Try it
New User Created from the Raisely API

Emit new event when a new user has been created.

 
Try it
Create or Update User with the Raisely API

Create or update a user in Raisely. See the documentation

 
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
List Donations with the Raisely API

Retrieves a list of donations in Raisely. See the documentation

 
Try it

Overview of Raisely

The Raisely API lets you manage and automate interactions with your fundraising campaigns. It can be used for retrieving campaign data, updating donor records, or triggering communications. When paired with Pipedream, these capabilities grow exponentially, allowing for integration with countless other services for enhanced automation and data flow. For example, syncing donor information with a CRM, sending custom thank you emails, or posting updates to social media platforms.

Connect Raisely

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: {
    raisely: {
      type: "app",
      app: "raisely",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.raisely.com/v3/campaigns/{{your_campaign_uuid}}`,
      headers: {
        "Authorization": `${this.raisely.$auth.api_key}`,
        "Accept": `application/json`,
      },
    })
  },
})

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