input CreatePurchaseOrderInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers |
po_number | String! | |
subtotal | String! | |
shipping_price | String! | |
total_price | String! | |
warehouse_id | String! | |
line_items | [CreatePurchaseOrderLineItemInput]! | |
po_date | ISODateTime | |
po_note | String | |
fulfillment_status | String | |
discount | String | |
vendor_id | String | |
warehouse | String | |
packing_note | String | |
description | String | |
partner_order_number | String | |
tax | String | |
tracking_number | String | |
attachments | [CreatePurchaseOrderAttachmentInput] | |
origin_of_shipment | String |
Referenced By
- purchase_order_create Mutation
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"
}