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 Data Stores API

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

Add or update a single record with Data Stores API on New Asset Created from DataTrails (formerly RKVST) API
DataTrails (formerly RKVST) + Data Stores
 
Try it
Add or update a single record with Data Stores API on New Event Detected from DataTrails (formerly RKVST) API
DataTrails (formerly RKVST) + Data Stores
 
Try it
Add or update multiple records with Data Stores API on New Asset Created from DataTrails (formerly RKVST) API
DataTrails (formerly RKVST) + Data Stores
 
Try it
Add or update multiple records with Data Stores API on New Event Detected from DataTrails (formerly RKVST) API
DataTrails (formerly RKVST) + Data Stores
 
Try it
Append to record with Data Stores API on New Asset Created from DataTrails (formerly RKVST) API
DataTrails (formerly RKVST) + Data Stores
 
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
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

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

Create a new event based on an asset. See the documentation

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Append to record with the Data Stores API

Append to a record in your data store Pipedream Data Store. If the record does not exist, a new record will be created in an array format.

 
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 Data Stores

Data Stores are a key-value store that allow you to persist state and share data across workflows. You can perform CRUD operations, enabling dynamic data management within your serverless architecture. Use it to save results from API calls, user inputs, or interim data; then read, update, or enrich this data in subsequent steps or workflows. Data Stores simplify stateful logic and cross-workflow communication, making them ideal for tracking process statuses, aggregating metrics, or serving as a simple configuration store.

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})