Type | Info |
List | Orders |
URL | http://{domain}/api/v2/orders/info_fulfillments.json |
Accepts Filters | No |
Output Attributes |
No |
Parameter | Type | Rules | Example |
---|---|---|---|
id | int / array | one id or multiple Lead Commerce order ids |
1 or array(3,8,9,45) |
show_lot | show lot information |
1 |
See Record Status section Order Fulfillment Status for status outputs.
curl -X POST 'https://{yoursite}/api/v2/orders/info_fulfillments.json' -H '{yourkey}' -H 'Content-Type: application/x-www-form-urlencoded' --data-urlencode 'id[0]=1' --data-urlencode 'show_lot=1'
{ "code": "200", "data": { "1": [ { "id": "1", "tracking": "", "line_items": "2", "total_items": "20", "weight": "34.60", "ship_date": "", "shipping_cost": "", "notes": "", "status": "2", "warehouse": [ { "id": "1", "name": "Warehouse 1" } ], "ship_to": [ { "id": "2", "name": "Bob Smith", "business_name": "Bob's Flower Shop", "address_1": "110 Main St", "address_2": "Apt 2342", "city": "Anaheim", "postal_code": "92110", "phone": "619-111-2222", "status": "1", "subregion": "California", "region": "United States" } ], "ship_from": [ { "id": "1", "name": "Jane Doe", "address_1": "123 Pine St", "address_2": "Ste 33", "city": "Irvine", "postal_code": "92119", "phone": "2069238660", "subregion": "California", "region": "United States" } ], "shipping_provider": [ { "id": "5", "name": "Shipping" } ], "shipping_provider_class": [ { "id": "51", "name": "Ground" } ], "items": [ { "id": "1", "qty": "10", "sku": "20000-0001ABX", "product": [ { "id": "1", "display_id": "20000", "name": "Modern-Fit Vest" } ] }, { "id": "2", "qty": "10", "sku": "20000-0005", "product": [ { "id": "1", "display_id": "20000", "name": "Modern-Fit Vest" } ] } ] }, { "id": "2", "tracking": "565981684TF74", "line_items": "1", "total_items": "5", "weight": "8.65", "ship_date": "1434405368", "shipping_cost": "8.97", "notes": "Some Notes for 565981684TF74", "status": "5", "warehouse": [ { "id": "1", "name": "Warehouse 1" } ], "ship_to": [ { "id": "2", "name": "Bob Smith", "business_name": "Bob's Flower Shop", "address_1": "110 Main St", "address_2": "Apt 2342", "city": "La Mesa", "postal_code": "92110", "phone": "619-111-2222", "status": "1", "subregion": "California", "region": "United States" } ], "ship_from": [ { "id": "1", "name": "Jane Doe", "address_1": "123 Pine St", "address_2": "Ste 33", "city": "Irvine", "postal_code": "92119", "phone": "2069238660", "subregion": "California", "region": "United States" } ], "shipping_provider": [ { "id": "5", "name": "Shipping" } ], "shipping_provider_class": [ { "id": "51", "name": "Ground" } ], "items": [ { "id": "1", "qty": "5", "sku": "20000-0001ABX", "product": [ { "id": "1", "display_id": "20000", "name": "Modern-Fit Vest" } ], "lot": [ { "lot": "808", "custom_lot": "", "qty": "2.00000000", "serial_number": "", "dom": "", "expiration": "" }, { "lot": "960", "custom_lot": "", "qty": "1.00000000", "serial_number": "", "dom": "", "expiration": "" } ] } ] } ] } }