BigCommerce · Schema

Item Custom

**Read Only** This will return in the Cart Response if the Cart was created using the [REST Management API](/docs/rest-management/carts). A custom item can only be added to a cart using the REST Management API.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
extendedListPrice integer
id string ID of the custom item
listPrice integer Price of the item. With or without tax depending on your stores set up.
name string Name of the custom item.
quantity integer
sku string SKU of the custom item.
View JSON Schema on GitHub

JSON Schema

bigcommerce-responsecartlineitemscustomitems-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/responseCartLineItemsCustomItems",
  "title": "Item Custom",
  "type": "object",
  "properties": {
    "extendedListPrice": {
      "type": "integer",
      "readOnly": true
    },
    "id": {
      "type": "string",
      "description": "ID of the custom item",
      "readOnly": true,
      "example": "f1f3a531-fbcf-439b-bac1-40d5ae5c2bff"
    },
    "listPrice": {
      "type": "integer",
      "description": "Price of the item. With or without tax depending on your stores set up.",
      "readOnly": true,
      "example": 10
    },
    "name": {
      "type": "string",
      "description": "Name of the custom item.",
      "readOnly": true,
      "example": "Custom Item Name"
    },
    "quantity": {
      "type": "integer",
      "readOnly": true,
      "example": 1
    },
    "sku": {
      "type": "string",
      "description": "SKU of the custom item.",
      "readOnly": true,
      "example": "SM-456"
    }
  },
  "description": "**Read Only**\n\nThis will return in the Cart Response if the Cart was created using the [REST Management API](/docs/rest-management/carts). A custom item can only be added to a cart using the REST Management API.",
  "x-internal": false
}