order_fulfill

Arguments

ArgumentTypeRequiredDefaultDescription
dataFulfillOrderInput!Yes

Return Type

OrderShipmentMutationOutput

Mutation

mutation order_fulfill(
  $data: FulfillOrderInput!
) {
  order_fulfill(
    data: $data
  ) {
    request_id
    complexity
    shipment {
      ...ShipmentFragment
    }
  }
}

Variables

{
  "data": {
    "customer_account_id": "abc123",
    "order_id": "abc123",
    "tote_id": "abc123",
    "packages": [ShippedPackagesInput],
    "notify_customer_via_shiphero": true,
    "notify_customer_via_store": true,
    "shipped_off_shiphero": true,
    "note": "abc123"
  }
}

Response

{
  "data": {
    "order_fulfill": {
      "request_id": "abc123",
      "complexity": 987,
      "shipment": Shipment
    }
  }
}