fabric · Example Payload

Fabric Update Order Status Example

CommerceComposable CommerceHeadless CommerceE-commerceRetailCartCatalogPIMOMSInventoryOffersPricingPromotionsCheckoutIdentityExperiencesAgentic Commerce

Fabric Update Order Status Example is an example object payload from fabric, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.fabric.inc/v3/orders/orderNumber/SO-1001/actions/update-status",
    "headers": {
      "Authorization": "Bearer {{FABRIC_ACCESS_TOKEN}}",
      "Content-Type": "application/json"
    },
    "body": {"status": "SHIPPED", "note": "Handed to carrier"}
  },
  "response": {
    "status": 200,
    "body": {
      "orderId": "ord_01HXYZ",
      "orderNumber": "SO-1001",
      "status": "SHIPPED",
      "updatedAt": "2026-05-25T14:22:01Z"
    }
  }
}