CONNECT APP
Build with Picqer
Warehouse software for online stores
Commerce
- API key
MCP
Give your agent Picqer tools
Every Picqer action is exposed as an MCP tool on Pipedream's remote server. Point a client at it with your end user's ID and Connect resolves that user's Picqer account for each tool call — you store no tokens.
// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
new URL("https://remote.mcp.pipedream.net/v3"),
{
requestInit: {
headers: {
Authorization: `Bearer ${accessToken}`,
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
"x-pd-app-slug": "picqer",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// e.g. run Add Comment To Order:
const result = await mcp.callTool({
name: "picqer-add-order-comment",
arguments: {
orderId: "Order ID",
body: "Comment Body",
},
})# access_token: mint a short-lived token with the Connect SDK — see the MCP guide
headers = {
"Authorization": f"Bearer {access_token}",
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", # any stable ID for this user in your system
"x-pd-app-slug": "picqer",
}
async with streamablehttp_client("https://remote.mcp.pipedream.net/v3", headers=headers) as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
tools = await session.list_tools()
# e.g. run Add Comment To Order:
result = await session.call_tool("picqer-add-order-comment", {
"orderId": "Order ID",
"body": "Comment Body",
})SDK
Run Picqer actions from your backend
Connect a user's Picqer account once, then run Add Comment To Order on their behalf from your own code — TypeScript, Python, or plain HTTP.
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: "picqer-add-order-comment",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
picqer: { authProvisionId: "apn_xxxxxxx" },
orderId: "Order ID",
body: "Comment Body",
},
})from pipedream import Pipedream
pd = Pipedream(
client_id="{oauth_client_id}",
client_secret="{oauth_client_secret}",
project_id="{project_id}",
project_environment="production",
)
result = pd.actions.run(
id="picqer-add-order-comment",
external_user_id="{external_user_id}", # any stable ID for this user in your system
configured_props={
"picqer": {"authProvisionId": "apn_xxxxxxx"},
"orderId": "Order ID",
"body": "Comment Body",
},
)curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
-H "Content-Type: application/json" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}" \
-d '{
"external_user_id": "{external_user_id}",
"id": "picqer-add-order-comment",
"configured_props": {
"picqer": { "authProvisionId": "apn_xxxxxxx" },
"orderId": "Order ID",
"body": "Comment Body"
}
}'TOOLS
Picqer actions
On-demand operations your product or agent can configure and run on behalf of a connected user.
-
Add Comment To Order
actionAdd a comment to an order in Picqer. See the documentationWritev0.0.3 -
Add Comment To Return
actionAdd a comment to a return in Picqer. See the documentationWritev0.0.3 -
Add Order Tags
actionAssociates a tag with an order. See the documentationWritev0.0.1 -
Add Product To Order
actionAdds a single product to concept orders only. See the documentationWritev0.0.1 -
Cancel Order
actionRemoves orders with 'concept' or 'expected' status only. See the documentationWritev0.0.2 -
Change Order To Concept
actionConverts expected orders back to concept status for editing. See the documentationWritev0.0.1 -
Create Picqer Order
actionCreate a new order in Picqer. See the documentationWritev0.0.3 -
Get Customer
actionGet a customer in Picqer. See the documentationRead-onlyv0.0.3 -
Get Order Comments
actionRetrieves comments linked to an order. See the documentationRead-onlyv0.0.1 -
Get Order Tags
actionRetrieves all tags associated with an order. See the documentationRead-onlyv0.0.1 -
Get Picklist
actionGet a picklist in Picqer. See the documentationRead-onlyv0.0.3 -
Get Picqer Order
actionGet an order in Picqer. See the documentationRead-onlyv0.0.3 -
Get Status Per Order Line
actionGet the status per order line in Picqer. See the documentationRead-onlyv0.0.3 -
List Customer ID Options
actionRetrieves available options for the Customer ID field.Read-onlyv0.0.1 -
List Fulfillment Customer ID Options
actionRetrieves available options for the Fulfillment Customer ID field.Read-onlyv0.0.1 -
List Picklist ID Options
actionRetrieves available options for the Picklist ID field.Read-onlyv0.0.1 -
List Product ID Options
actionRetrieves available options for the Product ID field.Read-onlyv0.0.1 -
List Return ID Options
actionRetrieves available options for the Return ID field.Read-onlyv0.0.1 -
List Shipping Provider ID Options
actionRetrieves available options for the Shipping Provider ID field.Read-onlyv0.0.1 -
List Tag ID Options
actionRetrieves available options for the Tag ID field.Read-onlyv0.0.1 -
List Template ID Options
actionRetrieves available options for the Template ID field.Read-onlyv0.0.1 -
List Warehouse ID Options
actionRetrieves available options for the Warehouse ID field.Read-onlyv0.0.1 -
Pause Order
actionSuspends processing of orders with 'processing' status. Pauses underlying picklists. See the documentationWritev0.0.1 -
Process Order
actionFinalizes a concept or expected order and creates picklists or backorders automatically. Note: The processing itself will take place in the background after you receive the response. See the documentationWritev0.0.2 -
Search Picqer Orders
actionSearch for orders in Picqer. See the documentationRead-onlyv0.0.3 -
Update Picqer Order
actionUpdate an order in Picqer. See the documentationWritev0.0.3
- App slug
- picqer
- Authentication
- API key
- Categories
- Commerce
- Actions
- 26
- Triggers
- 1
- API proxy
- Not available