View as Markdown
Sendcloud icon

Sendcloud ACTION

List Parcel Documents

List parcel documents. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Sendcloud account once, then configure and run List Parcel Documents 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: "sendcloud-list-parcel-documents",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    sendcloud: { authProvisionId: "apn_xxxxxxx" },
    type: "Type",
    parcels: ["Parcels"],
  },
})

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.

List Parcel Documents inputs
Property Type Description
type Type string
Document type you want to retrieve.
Required
parcels Parcels string[]
IDs of parcels to retrieve documents. Example: [1, 2, 3]
Required Dynamic
paperSize Paper Size string
Optional. One of A4, A5, A6. If omitted, the document's internal paper size is used.
Optional
header Header string
The type of document to return. Default is application/pdf.
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
sendcloud-list-parcel-documents
Version
0.0.4
App
Sendcloud
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes