> ## Documentation Index
> Fetch the complete documentation index at: https://docs.r28.ai/charter/llms.txt
> Use this file to discover all available pages before exploring further.

# fulfillment_create

> Fulfil one or more fulfillment orders, marking the goods as shipped. Get the ids from `order_fulfillment_orders` first. Omit the line items to fulfil a fulfillment order whole. Every one named must belong to the same order and the same location, so an order shipping from two places needs two calls.

<div className="tool-route"><span className="tool-row-method" data-method="POST">POST</span><code>{"/admin/api/2026-07/graphql.json"}</code></div>

```python shopify_fulfillment_create.py theme={null}
from charter.packs import shopify

result = await shopify.fulfillment_create.ainvoke({"variables": ...})
```

<Note>
  Posts a GraphQL document to `POST /admin/api/2026-07/graphql.json`, as every tool in this pack does.
</Note>

## Body

<div className="reference-table">
  | Field                                                             | Type                                                                                    | Description               |
  | ----------------------------------------------------------------- | --------------------------------------------------------------------------------------- | ------------------------- |
  | `variables` <span className="required" title="required">\*</span> | [FulfillmentCreateVariables](/charter/charter/packs/shopify/objects#fulfillmentcreatevariables) | The fulfilment to create. |
</div>
