View as Markdown
Wildberries icon

Wildberries ACTION

Update Order Status

Update a order status. See docs here
  • Action
  • Writes data
  • Destructive
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Wildberries account once, then configure and run Update Order Status 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: "wildberries-update-order-status",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    wildberries: { authProvisionId: "apn_xxxxxxx" },
    orderId: 10,
    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.

Update Order Status inputs
Property Type Description
orderId Order id integer
Set the Order Id.
Required
status Status string
Set the new status of the order.
Required
sgtin SGTIN any

Array required only for pharmaceutical products when they are transferred to status Customer received the goods.

Example: [{ code: string, numerator: integer, denominator: integer, sid: integer }]

See docs here

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
wildberries-update-order-status
Version
0.0.2
App
Wildberries
Authentication
API key
Read-only
No
Destructive
Yes
Open world
Yes