View as Markdown
Drata icon

Drata ACTION

Create Asset

Create an asset. See the documentation.
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Drata account once, then configure and run Create Asset from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "drata-create-asset",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    drata: { authProvisionId: "apn_xxxxxxx" },
    name: "Name",
    description: "Description",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Create Asset inputs
Property Type Description
name Name string
The name of the asset
Required
description Description string
The description of the asset
Required
assetClassTypes Asset Class Types string[]
The asset class types
Required
assetType Asset Type string
The asset type
Required
ownerId Owner ID integer
The ID of the owner
Required Dynamic
notes Notes string
Notes about the asset
Optional
uniqueId Unique ID string
Unique Id associated with this asset
Optional
removedAt Removed At string
The ISO 8601 datetime the asset was removed. E.g. 2021-01-01T00:00:00.000Z
Optional
externalId External ID string
An externally sourced unique identifier for a virtual asset
Optional
externalOwnerId External Owner ID string
Used to track the source of virtual assets, typically an account id
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
drata-create-asset
Version
0.0.4
App
Drata
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes