Gopuff · Example Payload

Gopuff Create Order Example

Quick CommerceInstant DeliveryLast MileGroceryFulfillmentRetailLogistics

Gopuff Create Order Example is an example object payload from Gopuff, 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://fulfillment-api-eus.partners.gopuff.com/shopify/v1/shops/orders",
    "headers": {
      "Content-Type": "application/json",
      "X-Gopuff-Partner-Key": "pk_partner_REDACTED"
    },
    "body": {
      "shopify_order_id": "5678901234",
      "customer": {
        "email": "alice@example.com",
        "phone": "+12155550100"
      },
      "shipping_address": {
        "line1": "1500 Market St",
        "city": "Philadelphia",
        "region": "PA",
        "postal_code": "19102",
        "country": "US"
      },
      "line_items": [
        { "upc": "076840100569", "quantity": 1, "price": 599, "currency": "USD" },
        { "upc": "012000161551", "quantity": 2, "price": 249, "currency": "USD" }
      ],
      "shipping_line": {
        "title": "Instant Delivery - Powered by Gopuff",
        "source": "Powered By Gopuff"
      }
    }
  },
  "response": {
    "status": 201,
    "body": {
      "gopuff_order_id": "gp_01HXYZABC123",
      "shopify_order_id": "5678901234",
      "mfc_id": "mfc_phl_center_city",
      "status": "accepted",
      "tracking_url": "https://track.gopuff.com/gp_01HXYZABC123",
      "created_at": "2026-05-23T19:42:11Z"
    }
  }
}