input UpdatePurchaseOrderInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers |
po_id | String! | |
packing_note | String | |
po_note | String | |
description | String | |
partner_order_number | String | |
discount | String | |
tax | String | |
line_items | [UpdatePurchaseOrderLineItemInput] | |
shipping_method | String | |
shipping_carrier | String | |
shipping_name | String | |
shipping_price | String | |
tracking_number | String | |
pdf | String | |
payment_method | String | |
payment_due_by | String | |
payment_note | String | |
po_date | ISODateTime | |
clear_po_date | Boolean |
Referenced By
- purchase_order_update Mutation
Example
{
"customer_account_id": "abc123",
"po_id": "abc123",
"packing_note": "abc123",
"po_note": "abc123",
"description": "abc123",
"partner_order_number": "abc123",
"discount": "abc123",
"tax": "abc123",
"line_items": UpdatePurchaseOrderLineItemInput,
"shipping_method": "abc123",
"shipping_carrier": "abc123",
"shipping_name": "abc123",
"shipping_price": "abc123",
"tracking_number": "abc123",
"pdf": "abc123",
"payment_method": "abc123",
"payment_due_by": "abc123",
"payment_note": "abc123",
"po_date": "abc123",
"clear_po_date": true
}