# OrderCreateLineItemInput - admin - INPUT_OBJECT
Version: 2025-01

## Description
The input fields for a line item to create for an order.

### Access Scopes



## Fields
* [fulfillmentService](/docs/api/admin/2025-01/scalars/String): String - The handle of a fulfillment service that stocks the product variant belonging to a line item.

              This is a third-party fulfillment service in the following scenarios:

              **Scenario 1**
              - The product variant is stocked by a single fulfillment service.
              - The [FulfillmentService](/api/admin-graphql/latest/objects/FulfillmentService) is a third-party fulfillment service. Third-party fulfillment services don't have a handle with the value `manual`.

              **Scenario 2**
              - Multiple fulfillment services stock the product variant.
              - The last time that the line item was unfulfilled, it was awaiting fulfillment by a third-party fulfillment service. Third-party fulfillment services don't have a handle with the value `manual`.

              If none of the above conditions are met, then the fulfillment service has the `manual` handle.
* [giftCard](/docs/api/admin/2025-01/scalars/Boolean): Boolean - Whether the item is a gift card. If true, then the item is not taxed or considered for shipping charges.
* [priceSet](/docs/api/admin/2025-01/input-objects/MoneyBagInput): MoneyBagInput - The price of the item before discounts have been applied in the shop currency.
* [productId](/docs/api/admin/2025-01/scalars/ID): ID - The ID of the product that the line item belongs to. Can be `null` if the original product associated with the order is deleted at a later date.
* [properties](/docs/api/admin/2025-01/input-objects/OrderCreateLineItemPropertyInput): OrderCreateLineItemPropertyInput - An array of custom information for the item that has been added to the cart. Often used to provide product customization options.
* [quantity](/docs/api/admin/2025-01/scalars/Int): Int! - The number of items that were purchased.
* [requiresShipping](/docs/api/admin/2025-01/scalars/Boolean): Boolean - Whether the item requires shipping.
* [sku](/docs/api/admin/2025-01/scalars/String): String - The item's SKU (stock keeping unit).
* [taxLines](/docs/api/admin/2025-01/input-objects/OrderCreateTaxLineInput): OrderCreateTaxLineInput - A list of tax line objects, each of which details a tax applied to the item.
* [taxable](/docs/api/admin/2025-01/scalars/Boolean): Boolean - Whether the item was taxable.
* [title](/docs/api/admin/2025-01/scalars/String): String - The title of the product.
* [variantId](/docs/api/admin/2025-01/scalars/ID): ID - The ID of the product variant. If both `productId` and `variantId` are provided, then the product ID that corresponds to the `variantId` is used.
* [variantTitle](/docs/api/admin/2025-01/scalars/String): String - The title of the product variant.
* [vendor](/docs/api/admin/2025-01/scalars/String): String - The name of the item's supplier.


## Input objects with this input object
* [OrderCreateOrderInput](/docs/api/admin/2025-01/input-objects/OrderCreateOrderInput)


## Examples