View as Markdown
JW Player icon

JW Player ACTION

Create Media

Creates a new media file in JW Player using fetch or external upload methods. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's JW Player account once, then configure and run Create Media 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: "jw_player-create-media",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    jw_player: { authProvisionId: "apn_xxxxxxx" },
    siteId: "Site ID",
    methodType: "Upload Method",
  },
})

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 Media inputs
Property Type Description
siteId Site ID string
The site ID is a unique identifier for an account property. This value is sometimes referred to as the Property ID.
Required
methodType Upload Method string
Method for uploading the media (fetch or external)
Required
mediaSource Media URL string
The URL of the media
Required
mimeType Mime-Type string
MIME type for the uploaded media, required for the external upload method
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
jw_player-create-media
Version
0.0.2
App
JW Player
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes