Ordoro · Schema

Update a Purchase Order Item

Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics

Properties

Name Type Description
quantity integer
unit_price number
discount_amount number
View JSON Schema on GitHub

JSON Schema

ordoro-put_purchase_order_item-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-put_purchase_order_item-schema.json",
  "title": "Update a Purchase Order Item",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "quantity": {
      "type": "integer"
    },
    "unit_price": {
      "type": "number"
    },
    "discount_amount": {
      "type": "number"
    }
  }
}