AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Acp Orders Webhooks

skill-orcaqubits-agentic-commerce-skills-plugins-acp-orders-webhooks · by OrcaQubits

Implement ACP order lifecycle management and webhook event delivery. Use when building order creation, status tracking, fulfillment updates, post-purchase adjustments, and HMAC-signed webhook emission.

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add skill-orcaqubits-agentic-commerce-skills-plugins-acp-orders-webhooks

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-orcaqubits-agentic-commerce-skills-plugins-acp-orders-webhooks)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Acp Orders Webhooks? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

ACP Orders & Webhooks

Before writing code

Fetch live docs:

  1. Web-search site:github.com agentic-commerce-protocol rfcs orders for the orders RFC
  2. Fetch https://developers.openai.com/commerce/guides/key-concepts/ for order lifecycle details
  3. Web-search site:github.com agentic-commerce-protocol examples orders for order webhook examples
  4. Web-search site:docs.stripe.com agentic-commerce webhook for Stripe webhook guidance

Conceptual Architecture

Order Lifecycle

After checkout completion, the order moves through these statuses:

created → confirmed → manual_review → processing → shipped → delivered
    |         |            |              |            |          |
    +─────────+────────────+──────────────+────────────+──────────+→ canceled

7 statuses:

  • created — Order placed, payment captured
  • confirmed — Merchant acknowledged the order
  • manual_review — Requires human review (fraud, compliance)
  • processing — Being prepared for fulfillment
  • shipped — Handed to carrier (physical) or access granted (digital)
  • delivered — Buyer received the goods
  • canceled — Order canceled at any stage

Webhook Events

Merchants emit two event types to the agent platform:

  • order_created — Fired after successful checkout completion
  • order_updated — Fired on any order status change or update

Webhook Payload

Each webhook event contains:

  • Order ID
  • Checkout session ID
  • Current order status
  • Order permalink URL (for buyer to view)
  • Fulfillment details (tracking, carrier, delivery windows)
  • Line items
  • Totals
  • Timestamps

HMAC Webhook Signatures

All webhook events MUST be signed:

  • Algorithm: HMAC-SHA256
  • Header: Merchant-Signature (or as specified in the latest spec)
  • Key: Shared secret obtained during onboarding
  • Payload: Raw request body (canonical JSON)
  • Verification: Timing-safe comparison to prevent timing attacks

Post-Purchase Order Adjustments

ACP supports adjustments after order creation:

| Type | Description | |------|-------------| | refund | Full refund | | partial_refund | Partial amount refund | | store_credit | Refund as store credit | | return | Buyer returns goods | | exchange | Swap for different item | | cancellation | Order cancellation | | dispute | Buyer disputes charge | | chargeback | PSP-initiated chargeback |

Each adjustment has its own status: pending, completed, failed.

Order Object

The order contains:

  • id — Unique order identifier
  • checkout_session_id — Links back to the checkout session
  • permalink_url — Buyer-facing order page

Best Practices

  • Emit order_created immediately after payment capture
  • Emit order_updated for every status transition
  • Include all current fulfillment details in each webhook
  • Use idempotent webhook delivery (include event ID for deduplication)
  • Implement retry logic for failed webhook deliveries (exponential backoff)
  • Sign EVERY webhook — never send unsigned events
  • Use timing-safe comparison when verifying signatures on the receiving end
  • Store webhook delivery status for debugging

Fetch the orders RFC and webhook examples from the GitHub repo for exact event shapes, signature format, and field definitions before implementing.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.