Fixed
v1.0.1
1 day ago by ShipMonk
Summary
Bug fixes for query parameter casing and removal of unsupported legacy field.
❌ Removed
- 🔴 BREAKING - shipping_payment_terms: The
shipping_payment_termsproperty has been removed from the API as it is no longer supported and should not be used.- Replacement: This field is deprecated with no direct replacement.
- Migration: Remove any references to
shipping_payment_termsfrom your integration code. If you were relying on this field, please contact support to discuss alternative solutions for managing shipping payment terms.
🐛 Fixed
Query Parameter Casing
Fixed a bug that was causing query parameters to be documented in snake_case format instead of the correct camelCase format. This ensures consistency across the API and matches JavaScript naming conventions.
Retrieve List of Orders (GET /v1/integrations/orders-list)
GET /v1/integrations/orders-list)The following query parameters are now correctly documented in camelCase:
page_size→pageSize: Number of items per pagesort_order→sortOrder: Sort direction (ascending/descending)order_keys→orderKeys: Filter by order keysorder_numbers→orderNumbers: Filter by order numbersorder_status→orderStatus: Filter by order statusorder_type→orderType: Filter by order typeupdated_at_start→updatedAtStart: Filter by update date range startupdated_at_end→updatedAtEnd: Filter by update date range end
Retrieve List of Receipts (GET /v1/integrations/receipts-list)
GET /v1/integrations/receipts-list)The following query parameters are now correctly documented in camelCase:
page_size→pageSize: Number of items per pagesort_order→sortOrder: Sort direction (ascending/descending)warehouse_id→warehouseId: Filter by warehouse identifiercompleted_at→completedAt: Filter by completion timestamp