DataTrails (formerly RKVST)

DataTrails (formerly RKVST is an API-first platform to add provenance and verify the authenticity of any digital content.)

Integrate the DataTrails (formerly RKVST) API with the ServiceNow API

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

Create Table Record with ServiceNow API on New Asset Created from DataTrails (formerly RKVST) API
DataTrails (formerly RKVST) + ServiceNow
 
Try it
Create Table Record with ServiceNow API on New Event Detected from DataTrails (formerly RKVST) API
DataTrails (formerly RKVST) + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New Asset Created from DataTrails (formerly RKVST) API
DataTrails (formerly RKVST) + ServiceNow
 
Try it
Get Table Record By SysId with ServiceNow API on New Event Detected from DataTrails (formerly RKVST) API
DataTrails (formerly RKVST) + ServiceNow
 
Try it
Get Table Records with ServiceNow API on New Asset Created from DataTrails (formerly RKVST) API
DataTrails (formerly RKVST) + ServiceNow
 
Try it
New Asset Created from the DataTrails (formerly RKVST) API

Emit new event when a new asset is created.

 
Try it
New Event Detected from the DataTrails (formerly RKVST) API

Emit new event for each new activity related to any asset within the platform. Note that event only emitted when it is created by the API or Pipedream DataTrails action: Create new Event.

 
Try it
Create Asset with the DataTrails (formerly RKVST) API

Allows for the addition of a new asset into the RKVST system. See the documentation

 
Try it
Create Table Record with the ServiceNow API

Inserts one record in the specified table.

 
Try it
Create Event with the DataTrails (formerly RKVST) API

Create a new event based on an asset. 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
Get Table Records with the ServiceNow API

Retrieves multiple records for the specified table.

 
Try it

Overview of DataTrails (formerly RKVST)

The DataTrails API, formerly known as RKVST, is designed to track the provenance and integrity of digital assets across their lifecycle. With this API, you can create an immutable record of actions, decisions, and processes that affect any asset, thereby providing an auditable trail. Leveraging Pipedream, you can automate workflows that require secure, verifiable, and traceable asset history. You can react to events in real-time, integrate with other services, and trigger actions based on asset changes or compliance checks.

Connect DataTrails (formerly RKVST)

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: {
    rkvst: {
      type: "app",
      app: "rkvst",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.datatrails.ai/archivist/v2/assets`,
      headers: {
        Authorization: `Bearer ${this.rkvst.$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}`,
      },
    })
  },
})