- Overview
- Account Settings
- Assets
- Connectors Framework
- Customer Portal
- Customers
- Dashboards
- Devices
- Dispatching
- Forms
- Inventory
- Invoices & Billing
- Locations
- Payments
- Parts
- Projects
- Quotes
- Recurrent Routes
- Recurrent Services
- Reports
- Sales Orders
- Schedule
- Services
- Tasks
- Text Messaging
- Time Tracking
- Users
- Work Orders
Overview
All the API methods available for Warehouses.
All the API methods available for Warehouses.
Table of Contents
- Warehouses
Parameters
Allows the API to create and update your Warehouses. You can retrieve individual Warehouses as well as a list of all Warehouses.
Allows the API to create and update your Warehouses. You can retrieve individual Warehouses as well as a list of all Warehouses.
mobiworkWarehouseId required |
Long An unique ID representing an internal ID |
name optional |
String Name to represent the warehouse with |
warehouseType required |
String Represents the type of warehouse. Can be either Generic Warehouse, Truck, or Store. |
warehouseProducts required |
Object A list of products assigned to the warehouse. |
Example
<warehouse>
<mobiworkWarehouseId>1</mobiworkWarehouseId>
<name>Test Warehouse</name>
<warehouseType>TRUCK</warehouseType>
<warehouseProducts>
<warehouseProduct>
<mobiworkWarehouseProductId>1</mobiworkWarehouseProductId>
<productId>1234</productId>
<stock>50</stock>
</warehouseProduct>
</warehouseProducts>
</warehouse>
<warehouse>
<mobiworkWarehouseId>1</mobiworkWarehouseId>
<name>Test Warehouse</name>
<warehouseType>TRUCK</warehouseType>
<warehouseProducts>
<warehouseProduct>
<mobiworkWarehouseProductId>1</mobiworkWarehouseProductId>
<productId>1234</productId>
<stock>50</stock>
</warehouseProduct>
</warehouseProducts>
</warehouse>