{
	"info": {
		"_postman_id": "8b908214-4f38-4285-acdc-9bf03f6d6261",
		"name": "Zenventory Legacy API Collection (https://zenventory.docs.apiary.io/#)",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "31962820"
	},
	"item": [
		{
			"name": "Addresses",
			"item": [
				{
					"name": "Get Customer Address (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/addresses/id",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"addresses",
								"id"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Categories",
			"item": [
				{
					"name": "Get Item Categories",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/categories",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"categories"
							],
							"query": [
								{
									"key": "client_id",
									"value": "",
									"description": "(int) - Shows only categories used by the given client.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Clients",
			"item": [
				{
					"name": "Get Clients by ID",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/clients/id",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"clients",
								"id"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Customer Orders",
			"item": [
				{
					"name": "Claim for Picking",
					"item": [
						{
							"name": "Get Picking Claim User",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://app.zenventory.com/services/rest/customerorders/id/claim",
									"protocol": "https",
									"host": [
										"app",
										"zenventory",
										"com"
									],
									"path": [
										"services",
										"rest",
										"customerorders",
										"id",
										"claim"
									]
								}
							},
							"response": []
						},
						{
							"name": "Claim Customer Order for Picking",
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "{\r\n  \"userid\": 1,\r\n  \"username\": \"Mr Sparks\"\r\n}",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "https://app.zenventory.com/services/rest/customerorders/id/claim",
									"protocol": "https",
									"host": [
										"app",
										"zenventory",
										"com"
									],
									"path": [
										"services",
										"rest",
										"customerorders",
										"id",
										"claim"
									]
								}
							},
							"response": []
						},
						{
							"name": "Remove Pick Claim on Customer Order",
							"request": {
								"method": "DELETE",
								"header": [],
								"url": {
									"raw": "https://app.zenventory.com/services/rest/customerorders/id/claim",
									"protocol": "https",
									"host": [
										"app",
										"zenventory",
										"com"
									],
									"path": [
										"services",
										"rest",
										"customerorders",
										"id",
										"claim"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "Pick Orders",
					"item": [
						{
							"name": "Get Customer Order Allocation Details (by ID)",
							"request": {
								"method": "GET",
								"header": [],
								"url": {
									"raw": "https://app.zenventory.com/services/rest/customerorders/id/items/pick",
									"protocol": "https",
									"host": [
										"app",
										"zenventory",
										"com"
									],
									"path": [
										"services",
										"rest",
										"customerorders",
										"id",
										"items",
										"pick"
									]
								}
							},
							"response": []
						},
						{
							"name": "Pick Customer Order Items (by ID)",
							"request": {
								"method": "PUT",
								"header": [],
								"body": {
									"mode": "raw",
									"raw": "[\r\n    {\r\n        \"customerorderitemid\": 7860,\r\n        \"locationid\": 1498,\r\n        \"lotnumber: \"\",\r\n        \"expirationdate\": null,\r\n        \"serials\": [],\r\n        \"quantity\": 5\r\n    },\r\n    {\r\n        \"customerorderitemid\": 7861,\r\n        \"locationid\": 1498,\r\n        \"lotnumber: \"\",\r\n        \"expirationdate\": null,\r\n        \"serials\": [],\r\n        \"quantity\": 3\r\n    }\r\n]",
									"options": {
										"raw": {
											"language": "json"
										}
									}
								},
								"url": {
									"raw": "https://app.zenventory.com/services/rest/customerorders/id/items/pick",
									"protocol": "https",
									"host": [
										"app",
										"zenventory",
										"com"
									],
									"path": [
										"services",
										"rest",
										"customerorders",
										"id",
										"items",
										"pick"
									]
								}
							},
							"response": []
						}
					]
				},
				{
					"name": "List Customer Orders",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/customerorders",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"customerorders"
							],
							"query": [
								{
									"key": "status ",
									"value": null,
									"description": "(string) - Filters by the customer order status: pick, open. default=open",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Customer Order",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"Account\": \"Account1\",\r\n  \"BillingAddressId\": 0,\r\n  \"BillingMethod\": 3,\r\n  \"CarrierCode\": \"FEDEX\",\r\n  \"CarrierId\": 13,\r\n  \"ClientId\": 0,\r\n  \"Customer\": {\r\n    \"AccountNo\": \"001\",\r\n    \"BillingAddress1\": \"BHA2\",\r\n    \"BillingAddress2\": \"BHA2\",\r\n    \"BillingAddress3\": \"BHA3\",\r\n    \"BillingAddressCity\": \"Phoenix\",\r\n    \"BillingAddressCompany\": \"BAC1\",\r\n    \"BillingAddressCountry\": \"United States\",\r\n    \"BillingAddressImportCode\": \"BAImportCode\",\r\n    \"BillingAddressName\": \"BHAName\",\r\n    \"BillingAddressPhone\": \"1234567\",\r\n    \"BillingAddressState\": \"AZ\",\r\n    \"BillingAddressZip\": \"85014\",\r\n    \"Company\": \"That Company\",\r\n    \"Email\": \"test@test.com\",\r\n    \"FirstName\": \"Guy\",\r\n    \"ShippingAddress1\": \"SHA1\",\r\n    \"ShippingAddress2\": \"SHA2\",\r\n    \"ShippingAddress3\": \"SHA3\",\r\n    \"ShippingAddressCity\": \"Phoenix\",\r\n    \"ShippingAddressCompany\": \"SAC1\",\r\n    \"ShippingAddressCountry\": \"United States\",\r\n    \"ShippingAddressImportCode\": \"SAImportCode\",\r\n    \"ShippingAddressName\": \"SHAName\",\r\n    \"ShippingAddressPhone\": \"1234567\",\r\n    \"ShippingAddressSameAsBilling\": 1,\r\n    \"ShippingAddressState\": \"AZ\",\r\n    \"ShippingAddressZip\": \"85013\",\r\n    \"Surname\": \"Smith\",\r\n    \"Title\": \"Mr\"\r\n  },\r\n  \"CustomerId\": 123,\r\n  \"DiscountPercentage\": 9.5,\r\n  \"MyList1\": \"MyList1Val\",\r\n  \"MyList2\": \"MyList2Val\",\r\n  \"OrderItems\": [\r\n    {\r\n      \"DiscountPercentage\": 5,\r\n      \"IMasterId\": 1,\r\n      \"Quantity\": 5,\r\n      \"SKU\": \"123\"\r\n    },\r\n    {\r\n      \"IMasterId\": 215,\r\n      \"Quantity\": 3,\r\n      \"SKU\": \"321\"\r\n    }\r\n  ],\r\n  \"OrderNumber\": \"TestAPI-1\",\r\n  \"OrderReference\": \"OrderRefVal\",\r\n  \"ProjectNo\": 23,\r\n  \"ServiceCode\": \"TS1\",\r\n  \"ShipFromWarehouse\": \"Main Warehouse\",\r\n  \"ShipNotes\": \"ShippingNotesVal\",\r\n  \"NoteFromCustomer\": \"Note from the customer\",\r\n  \"NoteToCustomer\": \"Note to the customer\",\r\n  \"ShippingAddressId\": 0,\r\n  \"Userfield1\": \"UF1val\",\r\n  \"Userfield2\": \"UF2val\",\r\n  \"Userfield3\": \"UF3val\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://app.zenventory.com/services/rest/customerorders/create",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"customerorders",
								"create"
							]
						}
					},
					"response": []
				},
				{
					"name": "Edit Customer Order (by ID)",
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "//the entire order body contents must be sent, not just the datafields you wish to edit.\r\n{\r\n  \"Account\": \"Account1\",\r\n  \"BillingAddressId\": 0,\r\n  \"BillingMethod\": 3,\r\n  \"CarrierCode\": \"FEDEX\",\r\n  \"CarrierId\": 13,\r\n  \"ClientId\": 0,\r\n  \"Customer\": {\r\n    \"AccountNo\": \"001\",\r\n    \"BillingAddress1\": \"BHA2\",\r\n    \"BillingAddress2\": \"BHA2\",\r\n    \"BillingAddress3\": \"BHA3\",\r\n    \"BillingAddressCity\": \"Phoenix\",\r\n    \"BillingAddressCompany\": \"BAC1\",\r\n    \"BillingAddressCountry\": \"United States\",\r\n    \"BillingAddressImportCode\": \"BAImportCode\",\r\n    \"BillingAddressName\": \"BHAName\",\r\n    \"BillingAddressPhone\": \"1234567\",\r\n    \"BillingAddressState\": \"AZ\",\r\n    \"BillingAddressZip\": \"85014\",\r\n    \"Company\": \"That Company\",\r\n    \"Email\": \"test@test.com\",\r\n    \"FirstName\": \"Guy\",\r\n    \"ShippingAddress1\": \"SHA1\",\r\n    \"ShippingAddress2\": \"SHA2\",\r\n    \"ShippingAddress3\": \"SHA3\",\r\n    \"ShippingAddressCity\": \"Phoenix\",\r\n    \"ShippingAddressCompany\": \"SAC1\",\r\n    \"ShippingAddressCountry\": \"United States\",\r\n    \"ShippingAddressImportCode\": \"SAImportCode\",\r\n    \"ShippingAddressName\": \"SHAName\",\r\n    \"ShippingAddressPhone\": \"1234567\",\r\n    \"ShippingAddressSameAsBilling\": 1,\r\n    \"ShippingAddressState\": \"AZ\",\r\n    \"ShippingAddressZip\": \"85013\",\r\n    \"Surname\": \"Smith\",\r\n    \"Title\": \"Mr\"\r\n  },\r\n  \"CustomerId\": 123,\r\n  \"DiscountPercentage\": 9.5,\r\n  \"MyList1\": \"MyList1Val\",\r\n  \"MyList2\": \"MyList2Val\",\r\n  \"OrderItems\": [\r\n    {\r\n      \"CustomerOrderItemId\": 14076,\r\n      \"DiscountPercentage\": 6,\r\n      \"IMasterId\": 23,\r\n      \"Quantity\": 6,\r\n      \"SKU\": \"321\"\r\n    },\r\n    {\r\n      \"CustomerOrderItemId\": 14076,\r\n      \"DiscountPercentage\": 4,\r\n      \"IMasterId\": 25,\r\n      \"Quantity\": 4,\r\n      \"SKU\": \"222\"\r\n    },\r\n    {\r\n      \"CustomerOrderItemId\": 14076,\r\n      \"DiscountPercentage\": 2,\r\n      \"IMasterId\": 40,\r\n      \"Quantity\": 2,\r\n      \"SKU\": \"123\"\r\n    },\r\n    {\r\n      \"DiscountPercentage\": 2,\r\n      \"IMasterId\": 40,\r\n      \"Quantity\": 3,\r\n      \"SKU\": \"123\"\r\n    }\r\n  ],\r\n  \"OrderNumber\": \"TestAPI-7\",\r\n  \"OrderReference\": \"OrderRefVal\",\r\n  \"ProjectNo\": 23,\r\n  \"ServiceCode\": \"TS1\",\r\n  \"ShipFromWarehouse\": \"Main Warehouse\",\r\n  \"ShipNotes\": \"ShippingNotesValUpdated\",\r\n  \"ShippingAddressId\": 0,\r\n  \"Unpick\": 1,\r\n  \"Userfield1\": \"UF1val3\",\r\n  \"Userfield2\": \"UF2val2\",\r\n  \"Userfield3\": \"UF3val1\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://app.zenventory.com/services/rest/customerorders/id/edit",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"customerorders",
								"id",
								"edit"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Customer Orders Count",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/customerorders/count?status =",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"customerorders",
								"count"
							],
							"query": [
								{
									"key": "status ",
									"value": "",
									"description": "(string) - Filters by the customer order status: pick, open. Default=open"
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Customer Order (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/customerorders/id",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"customerorders",
								"id"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Order Info Counts (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/customerorders/id/counts",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"customerorders",
								"id",
								"counts"
							]
						}
					},
					"response": []
				},
				{
					"name": "Cancel Customer Order (by ID)",
					"request": {
						"method": "PUT",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/customerorders/id/cancel",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"customerorders",
								"id",
								"cancel"
							],
							"query": [
								{
									"key": "reason",
									"value": null,
									"description": "(string) - Reason why the order is being cancelled. Required.",
									"disabled": true
								},
								{
									"key": "orderNumber",
									"value": null,
									"description": "(string) - Cancel by order number instead of by id. Optional",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Customer Order Line Items (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/customerorders/id/items",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"customerorders",
								"id",
								"items"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Customer Order Returns",
			"item": [
				{
					"name": "List Customer Order Returns",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/customerreturns",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"customerreturns"
							],
							"query": [
								{
									"key": "status ",
									"value": null,
									"description": "(string) - Status of the return to filter by: expected (default), returned.",
									"disabled": true
								},
								{
									"key": "customerorder_id ",
									"value": null,
									"description": "(number) - Filters returns for this customer order.",
									"disabled": true
								},
								{
									"key": "customerorder_no ",
									"value": null,
									"description": "(string) - Filters by customer order number.",
									"disabled": true
								},
								{
									"key": "rma_number ",
									"value": null,
									"description": "rma_number (string) - Filters by RMA number.",
									"disabled": true
								},
								{
									"key": "customer_id ",
									"value": null,
									"description": "(number) - Filters by customer.",
									"disabled": true
								},
								{
									"key": "customer_name ",
									"value": null,
									"description": "(string) - Filters by customer name.",
									"disabled": true
								},
								{
									"key": "customer_account ",
									"value": null,
									"description": "(string) - Filters by customer account number.",
									"disabled": true
								},
								{
									"key": "client_id ",
									"value": null,
									"description": "(number) - Filters by client.",
									"disabled": true
								},
								{
									"key": "start_date ",
									"value": null,
									"description": "(string) - Filters for returns created on or after a given date.",
									"disabled": true
								},
								{
									"key": "end_date ",
									"value": null,
									"description": "(string) - Filters for returns created on or before a given date.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Create Customer Order Return",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"customerorderid\": 55,\r\n  \"ordernumber\": null,\r\n  \"items\": [\r\n    {\r\n      \"customerorderitemid\": 67,\r\n      \"imasterid\": null,\r\n      \"imastersku\": null,\r\n      \"quantity\": 5,\r\n      \"action\": \"replace\"\r\n    }\r\n  ]\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://app.zenventory.com/services/rest/customerreturns",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"customerreturns"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Cycle Counts",
			"item": [
				{
					"name": "List Active Cycle Counts",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/cyclecounts",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"cyclecounts"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get # of Active Cycle Counts",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "GEThttps://app.zenventory.com/services/rest/cyclecounts/count",
							"protocol": "GEThttps",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"cyclecounts",
								"count"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Cycle Count (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/cyclecounts/id",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"cyclecounts",
								"id"
							]
						}
					},
					"response": []
				},
				{
					"name": "Claim Cycle Count (by ID)",
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\r\n  \"userid\": 1,\r\n  \"username\": \"Mr Sparks\"\r\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://app.zenventory.com/services/rest/cyclecounts/id/claim",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"cyclecounts",
								"id",
								"claim"
							]
						}
					},
					"response": []
				},
				{
					"name": "Remove Claimed User on Cycle Count (by ID)",
					"request": {
						"method": "DELETE",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/cyclecounts/id/claim",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"cyclecounts",
								"id",
								"claim"
							]
						}
					},
					"response": []
				},
				{
					"name": "List Cycle Count Locations (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/cyclecounts/ccid/locations",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"cyclecounts",
								"ccid",
								"locations"
							]
						}
					},
					"response": []
				},
				{
					"name": "Remove Location from Cycle Count",
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://app.zenventory.com/services/rest/cyclecounts/ccid/locations/id",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"cyclecounts",
								"ccid",
								"locations",
								"id"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Inventory",
			"item": [
				{
					"name": "List Inventory",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/inventory",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"inventory"
							],
							"query": [
								{
									"key": "view_mode ",
									"value": null,
									"description": "(string) - Either \"all\" or \"instock\" with \"instock\" as the default value. \"All\" will show all items that are assigned to the warehouse(s) while \"instock\" will return only the items that are in stock.",
									"disabled": true
								},
								{
									"key": "category_id ",
									"value": null,
									"description": "(id) - Filters the items by the given category.",
									"disabled": true
								},
								{
									"key": "search ",
									"value": null,
									"description": "(string) - Searches item SKUs and descriptions for the given string.",
									"disabled": true
								},
								{
									"key": "order_by ",
									"value": null,
									"description": "Determines what the items should be ordered by. Possible values are \"SKU\", \"DESC\", \"STOCK\", \"EXPIRE\" (expiration date), \"CAT\" (category), with \"SKU\" being the default order.",
									"disabled": true
								},
								{
									"key": "warehouse_id ",
									"value": null,
									"description": "(id) - Filters the items by warehouse. If no id is provided, returns items in all warehouses.",
									"disabled": true
								},
								{
									"key": "on_order ",
									"value": null,
									"description": "(bool) - True if you want to include the quantity you have ordered that has yet to arrive.",
									"disabled": true
								},
								{
									"key": "client_id ",
									"value": null,
									"description": "(id) - Filters by client.",
									"disabled": true
								},
								{
									"key": "include_kits ",
									"value": null,
									"description": "(bool) - True if you want to include kit master items.",
									"disabled": true
								},
								{
									"key": "images ",
									"value": null,
									"description": "(bool) - True if you wish to include item images.",
									"disabled": true
								},
								{
									"key": "image_size ",
									"value": null,
									"description": "(string) - Used if images is true. Possible values are \"thumb\" (128x128) and \"tiny\" (64x64) with \"tiny\" as the default size. The images are returned as Base64 encoded strings.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Quantities Per Location (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/inventory/id/locations",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"inventory",
								"id",
								"locations"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Items",
			"item": [
				{
					"name": "List Items",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/items",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"items"
							],
							"query": [
								{
									"key": "view_mode ",
									"value": null,
									"description": "(string) - Possible values: all, instock (default).",
									"disabled": true
								},
								{
									"key": "search ",
									"value": null,
									"description": "(string) - Searches for items with matching SKUs and descriptions.",
									"disabled": true
								},
								{
									"key": "order_by ",
									"value": null,
									"description": "(string) - How the items should be ordered. Default ordering is category followed by SKU. Possible values: SKU, DESC (description), STOCK, CAT (category), EXPIRE (expiration date).(string) - How the items should be ordered. Default ordering is category followed by SKU. Possible values: SKU, DESC (description), STOCK, CAT (category), EXPIRE (expiration date).",
									"disabled": true
								},
								{
									"key": "on_order ",
									"value": null,
									"description": "(bool) - True if you want the on order count of the items to be included.",
									"disabled": true
								},
								{
									"key": "warehouse_id ",
									"value": null,
									"description": "(int) - Id of the warehouse you want the inventory of, use -1 if you wish to see the inventory of all warehouses. Default is the user's current warehouse.",
									"disabled": true
								},
								{
									"key": "client_id ",
									"value": null,
									"description": "(int) - Show only items belonging to the given client. 0 to view current warehouse. Default shows both own inventory and client inventory.",
									"disabled": true
								},
								{
									"key": "category_id ",
									"value": null,
									"description": "(int) - Filters by the given category.",
									"disabled": true
								},
								{
									"key": "include_kits ",
									"value": null,
									"description": "(bool) - True if you want to include kit master items.",
									"disabled": true
								},
								{
									"key": "include_sellable ",
									"value": null,
									"description": "(bool) - True if you want to include the sellable quantity.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Default Item Image",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/items/id/images",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"items",
								"id",
								"images"
							],
							"query": [
								{
									"key": "image_size",
									"value": null,
									"description": "(string) - Possible values are \"tiny\" (64x64), \"thumb\" (128x128), or \"full\" (350x350). Full is the default size.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Serials",
			"item": [
				{
					"name": "Get Item Serial Numbers",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/serials",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"serials"
							],
							"query": [
								{
									"key": "customer_order ",
									"value": null,
									"description": "(int) - Gets the serial numbers available for picking of the given customer order.",
									"disabled": true
								},
								{
									"key": "transfer_order ",
									"value": null,
									"description": "(int) - Gets the serial numbers available for picking of the given transfer order.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Shipping Orders",
			"item": [
				{
					"name": "List Shipping Orders",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/shippingorders",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"shippingorders"
							],
							"query": [
								{
									"key": "shipped",
									"value": null,
									"description": "(bool) - If true, returns shipping orders that have been shipped. Else, returns unshipped ones. Default is false.",
									"disabled": true
								},
								{
									"key": "start_date ",
									"value": null,
									"description": "(string) - If shipped is false, then gets all shipping orders that have been modified since this date. If shipped is true, then gets all shipping orders that have been shipped since this date. (YYYY-MM-DD)",
									"disabled": true
								},
								{
									"key": "end_date ",
									"value": null,
									"description": "(string) - If shipped is false, then gets all shipping orders that have been modified before/on this date. If shipped is true, then gets all shipping orders that have been shipped before/on this date. (YYYY-MM-DD)",
									"disabled": true
								},
								{
									"key": "warehouse_id",
									"value": null,
									"description": "(int) - Requires the Change Warehouse role. Returns shipping orders from this warehouse. If not provided, returns shipping orders from all warehouses.",
									"disabled": true
								},
								{
									"key": "customerorder_id ",
									"value": null,
									"description": "(int) - Returns all shipping orders for this customer order.",
									"disabled": true
								},
								{
									"key": "customerorder_no ",
									"value": null,
									"description": "(string) - Returns all shipping orders for this customer order. Ignored if customerorder_id was given.",
									"disabled": true
								},
								{
									"key": "fully_picked ",
									"value": null,
									"description": "(bool) - If true, will only return shipping orders of fully picked customer orders. Default is true.",
									"disabled": true
								},
								{
									"key": "client_id ",
									"value": null,
									"description": "(int) - Returns shipping orders only for customer orders from this client.",
									"disabled": true
								},
								{
									"key": "include_items",
									"value": null,
									"description": "(bool) - If true, includes the items that are on the shipping order.",
									"disabled": true
								},
								{
									"key": "include_shipments ",
									"value": null,
									"description": "(bool) - If true, includes the shipments made for the shipping order.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Shipping Order (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/shippingorders/id",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"shippingorders",
								"id"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Shipping Order Items (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/shippingorders/id/items",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"shippingorders",
								"id",
								"items"
							]
						}
					},
					"response": []
				},
				{
					"name": "Add Shipments to Shipping Order (by ID)",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "[\r\n  {\r\n    \"carriercode\": \"FEDEX\",\r\n    \"carriername\": \"\",\r\n    \"servicecode\": \"FEDEX_2DAY\",\r\n    \"servicename\": \"\",\r\n    \"trackingnumber\": \"12345\",\r\n    \"shippingcost\": 7.7,\r\n    \"weight\": 2\r\n  }\r\n]",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://app.zenventory.com/services/rest/shippingorders/id/shipments",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"shippingorders",
								"id",
								"shipments"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Transfer Orders",
			"item": [
				{
					"name": "List Transfer Orders",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/transferorders",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"transferorders"
							],
							"query": [
								{
									"key": "status ",
									"value": null,
									"description": "(string) - Filters by the transfer order status: pick, open. Default = open",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Count of Transfer Orders",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/transferorders/count?status =(string) - Filters by the transfer order status: pick, open.",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"transferorders",
								"count"
							],
							"query": [
								{
									"key": "status ",
									"value": "(string) - Filters by the transfer order status: pick, open."
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Transfer Order (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/transferorders/id",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"transferorders",
								"id"
							]
						}
					},
					"response": []
				},
				{
					"name": "Remove Claimed User of Transfer Order (by ID)",
					"request": {
						"method": "DELETE",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://app.zenventory.com/services/rest/transferorders/id/claim",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"transferorders",
								"id",
								"claim"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Transfer Order Info Counts (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/transferorders/id/counts",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"transferorders",
								"id",
								"counts"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Transfer Order Line Items (by ID)",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://app.zenventory.com/services/rest/transferorders/id/items",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"transferorders",
								"id",
								"items"
							]
						}
					},
					"response": []
				},
				{
					"name": "Pick Transfer Order Items (by ID)",
					"request": {
						"method": "PUT",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "[\r\n    {\r\n        \"transferorderitemid\": 46,\r\n        \"locationid\": 1498,\r\n        \"lotnumber: \"\",\r\n        \"expirationdate\": null,\r\n        \"serials\": [],\r\n        \"quantity\": 5\r\n    }\r\n]",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://app.zenventory.com/services/rest/transferorders/id/items/pick",
							"protocol": "https",
							"host": [
								"app",
								"zenventory",
								"com"
							],
							"path": [
								"services",
								"rest",
								"transferorders",
								"id",
								"items",
								"pick"
							]
						}
					},
					"response": []
				}
			]
		}
	]
}