docsGET/warehouses# Retrieve a list of all warehouses with pagination support.GET/warehouse/{warehouse_id}# Retrieve details of a specific warehouse by ID.POST/warehouse# Create a new warehouse.PUT/warehouse/{warehouse_id}# Update details of an existing warehouse by ID.DELETE/warehouse/{warehouse_id}# Delete a warehouse by ID.The unique identifier of the warehouse.
The team ID associated with the warehouse.
The name of the warehouse.
The address ID associated with the warehouse.
The carrier ID associated with the warehouse.
The date and time when the warehouse was created.
The address details of the warehouse, including contact name, street, city, state, postal code, country, phone, and email.
getRetrieve a list of all warehouses with pagination support.
The page number for pagination.
The number of warehouses to return per page.
getRetrieve details of a specific warehouse by its ID.
The unique ID of the warehouse.
postCreate a new warehouse with its name, address details, and associated carrier.
The name of the warehouse.
The address details of the warehouse.
The carrier ID associated with the warehouse.
putUpdate the details of an existing warehouse by ID. Any entry can be updated.
The new name of the warehouse.
The updated address details of the warehouse.
The new carrier ID associated with the warehouse.
deleteDelete a specific warehouse by ID.
The unique ID of the warehouse.