input CreatePurchaseOrderInput

Fields

FieldTypeDescription
customer_account_idString

Use this when you are a 3PL acting on behalf of one of your customers

po_numberString!
subtotalString!
shipping_priceString!
total_priceString!
warehouse_idString!
line_items[CreatePurchaseOrderLineItemInput]!
po_dateISODateTime
po_noteString
fulfillment_statusString
discountString
vendor_idString
warehouseString
packing_noteString
descriptionString
partner_order_numberString
taxString
tracking_numberString
attachments[CreatePurchaseOrderAttachmentInput]
origin_of_shipmentString

Referenced By

Example

{
  "customer_account_id": "abc123",
  "po_number": "abc123",
  "subtotal": "abc123",
  "shipping_price": "abc123",
  "total_price": "abc123",
  "warehouse_id": "abc123",
  "line_items": CreatePurchaseOrderLineItemInput,
  "po_date": "abc123",
  "po_note": "abc123",
  "fulfillment_status": "abc123",
  "discount": "abc123",
  "vendor_id": "abc123",
  "warehouse": "abc123",
  "packing_note": "abc123",
  "description": "abc123",
  "partner_order_number": "abc123",
  "tax": "abc123",
  "tracking_number": "abc123",
  "attachments": CreatePurchaseOrderAttachmentInput,
  "origin_of_shipment": "abc123"
}