pCloud

Secure encrypted cloud storage

Integrate the pCloud API with the ServiceNow API

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

Create Table Record with ServiceNow API on Watch Folder from pCloud API
pCloud + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on Watch Folder from pCloud API
pCloud + ServiceNow
 
Try it
Get Table Records with ServiceNow API on Watch Folder from pCloud API
pCloud + ServiceNow
 
Try it
Update Table Record with ServiceNow API on Watch Folder from pCloud API
pCloud + ServiceNow
 
Try it
Watch Folder from the pCloud API

Emit new event when a file is created or modified in the specified folder.

 
Try it
Copy File with the pCloud API

Copy a file to the specified destination. See the docs here

 
Try it
Create Table Record with the ServiceNow API

Inserts one record in the specified table.

 
Try it
Copy Folder with the pCloud API

Copy a folder to the specified folder. See the docs here

 
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 Folder with the pCloud API

Create a folder in the specified folder. See the docs here

 
Try it

Overview of pCloud

The pCloud API allows for direct interaction with your pCloud account, providing access to files and folders within your cloud storage. With Pipedream, you can automate file management tasks such as uploading, downloading, and synchronizing files. Additionally, you can create workflows to organize your cloud storage, share files with team members, or back up important data from various sources.

Connect pCloud

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: {
    pcloud: {
      type: "app",
      app: "pcloud",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.pcloud.$auth.hostname}/userinfo`,
      headers: {
        Authorization: `Bearer ${this.pcloud.$auth.oauth_access_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}`,
      },
    })
  },
})