View as Markdown
SureCart icon

SureCart ACTION

Update Fulfillment

Update an existing fulfillment. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's SureCart account once, then configure and run Update Fulfillment 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: "surecart-update-fulfillment",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    surecart: { authProvisionId: "apn_xxxxxxx" },
    fulfillmentId: "Fulfillment ID",
    notificationsEnabled: true,
  },
})

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.

Update Fulfillment inputs
Property Type Description
fulfillmentId Fulfillment ID string
The unique identifier of the fulfillment. Use List Fulfillments to retrieve a list of available fulfillments.
Required
notificationsEnabled Notifications Enabled boolean
Enable or disable fulfillment notifications to the customer.
Optional
shipmentStatus Shipment Status string
The current shipment status for this fulfillment.
Optional
trackings Trackings string
Updated tracking information as a JSON array. Example: [{ "number": "1Z999AA1012345678", "url": "https://tracking.example.com" }]
Optional
fulfillmentItems Fulfillment Items string
Updated fulfillment items as a JSON array. Example: [{ "line_item": "li_abc123", "quantity": 1 }]
Optional
shipments Shipments string
Updated shipment details. Each item requires shipping_provider (UUID). Example: [{"shipping_provider":"sp_abc123","tracking_number":"1Z999AA1012345678","items":[{"line_item":"li_xyz789","quantity":1}]}]
Optional
metadata Metadata object
Updated key-value metadata. Example: { "warehouse": "east" }
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
surecart-update-fulfillment
Version
0.0.3
App
SureCart
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes