Warehouses
Read, Insert, Update and Delete Warehouses.
Table Specific Information
Select
The 本製品 will use the Zoho Inventory API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client-side within the 本製品.
- WarehouseId supports the '=' comparison.
For example, the following queries are processed server side:
SELECT * FROM Warehouses WHERE WarehouseId = '3350895000000089001'
Insert
Insert can be executed by specifying the WarehouseName and Country column. The columns that are not read-only can be inserted optionally. Following is an example of how to insert into this table.
INSERT INTO Warehouses (warehousename, country) VALUES ('TestWarehouse', 'India')
Update
Update can be executed by specifying the Id in the WHERE Clause. The columns that are not read-only can be Updated.
For example:
UPDATE Warehouses SET Country = 'Australia' WHERE WarehouseId = '3350895000000085088'
Delete
Delete can be executed by specifying the Id in the WHERE Clause
For example:
DELETE FROM Warehouses WHERE WarehouseId = '3350895000000089001'
Columns
Name | Type | ReadOnly | References | Description |
WarehouseId [KEY] | Long | True |
Id of the warehouse | |
Address | String | False |
Street Name of the warehouse. | |
City | String | False |
City Name of the warehouse. | |
Country | String | False |
Country Name of the warehouse. | |
String | False |
Email id for the warehouse | ||
IsPrimary | Boolean | True |
Boolean to check if it is primary | |
Phone | String | False |
Mobile number for warehouse | |
State | String | False |
State Name of the warehouse. | |
Status | String | True |
Status check | |
WarehouseName | String | False |
Name of the warehouse | |
Zip | Integer | False |
Zipcode of the warehouse. |