View as Markdown
Monta icon

Monta ACTION

List Updated Orders

List orders whose status changed since a specified date and time, including orders deleted since then. Use this for reliable bulk order syncing; for cursor-based incremental polling of individual change events, use List Order Events Since ID instead. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Monta account once, then configure and run List Updated Orders 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: "monta-list-updated-orders",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    monta: { authProvisionId: "apn_xxxxxxx" },
    updatedSince: "Updated Since",
    status: "Status",
  },
})

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 Updated Orders inputs
Property Type Description
updatedSince Updated Since string
The start date and time in ISO 8601 format (e.g. 2026-07-24T00:00:00Z). Must be within the last 7 days; Monta rejects earlier dates.
Required
status Status string
Filter orders by deleted status. NonDeleted returns only non-deleted orders; Deleted returns only orders deleted since the given time. Omit to return both.
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
monta-list-updated-orders
Version
0.0.2
App
Monta
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes