The Pick List object
Attributes
Unique identifier for the object.
ISO 8601 timestamp of when the object was created.
ISO 8601 timestamp of when the object was last updated.
Default: draft
Default: Material Transfer for Manufacture
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
{
"id": "pick-list_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"status": "draft",
"company": "Example Corp",
"parent_warehouse": "parent_warehouse_example",
"customer": "customer_example",
"work_order": "work_order_example",
"for_qty": 0,
"purpose": "Material Transfer for Manufacture",
"material_request": "material_request_example",
"group_same_items": false,
"scan_barcode": "scan_barcode_example",
"scan_mode": false,
"prompt_qty": false,
"customer_name": "customer_name_example",
"consider_rejected_warehouses": false,
"pick_manually": false,
"ignore_pricing_rule": false,
"delivery_status": "delivery_status_example",
"per_delivered": 0
} /api/stock/pick-list/{id} Retrieve a pick list
Retrieves the details of an existing pick list. Supply the unique pick list ID that was returned from a previous request.
Path parameters
The identifier of the pick list to retrieve.
Returns
Returns the pick list object if a valid identifier was provided.
curl https://api.overplane.dev/api/stock/pick-list/pick-list_abc123 \
-H "Authorization: Bearer sk_test_..." {
"id": "pick-list_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"status": "draft",
"company": "Example Corp",
"parent_warehouse": "parent_warehouse_example",
"customer": "customer_example",
"work_order": "work_order_example",
"for_qty": 0,
"purpose": "Material Transfer for Manufacture",
"material_request": "material_request_example",
"group_same_items": false,
"scan_barcode": "scan_barcode_example",
"scan_mode": false,
"prompt_qty": false,
"customer_name": "customer_name_example",
"consider_rejected_warehouses": false,
"pick_manually": false,
"ignore_pricing_rule": false,
"delivery_status": "delivery_status_example",
"per_delivered": 0
} /api/stock/pick-list List all pick lists
Returns a list of pick lists. The results are sorted by creation date, with the most recently created appearing first.
Query parameters
Maximum number of objects to return. Default: 20.
Number of objects to skip for pagination. Default: 0.
Returns
A paginated list of pick list objects.
curl https://api.overplane.dev/api/stock/pick-list \
-H "Authorization: Bearer sk_test_..." {
"data": [
{
"id": "pick-list_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"status": "draft",
"company": "Example Corp",
"parent_warehouse": "parent_warehouse_example",
"customer": "customer_example",
"work_order": "work_order_example",
"for_qty": 0,
"purpose": "Material Transfer for Manufacture",
"material_request": "material_request_example",
"group_same_items": false,
"scan_barcode": "scan_barcode_example",
"scan_mode": false,
"prompt_qty": false,
"customer_name": "customer_name_example",
"consider_rejected_warehouses": false,
"pick_manually": false,
"ignore_pricing_rule": false,
"delivery_status": "delivery_status_example",
"per_delivered": 0
}
],
"has_more": false,
"total": 1
} /api/stock/pick-list Create a pick list
Creates a new pick list object.
Body parameters
Default: draft
Default: Material Transfer for Manufacture
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
Returns
Returns the newly created pick list object if the call succeeded.
curl https://api.overplane.dev/api/stock/pick-list \
-H "Authorization: Bearer sk_test_..." \
-X POST \
-H "Content-Type: application/json" \
-d '{"company":"Example Corp"}' {
"id": "pick-list_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"status": "draft",
"company": "Example Corp",
"parent_warehouse": "parent_warehouse_example",
"customer": "customer_example",
"work_order": "work_order_example",
"for_qty": 0,
"purpose": "Material Transfer for Manufacture",
"material_request": "material_request_example",
"group_same_items": false,
"scan_barcode": "scan_barcode_example",
"scan_mode": false,
"prompt_qty": false,
"customer_name": "customer_name_example",
"consider_rejected_warehouses": false,
"pick_manually": false,
"ignore_pricing_rule": false,
"delivery_status": "delivery_status_example",
"per_delivered": 0
} /api/stock/pick-list/{id} Update a pick list
Updates the specified pick list by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Path parameters
The identifier of the pick list to update.
Body parameters
Default: draft
Default: Material Transfer for Manufacture
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
Returns
Returns the updated pick list object.
curl https://api.overplane.dev/api/stock/pick-list/pick-list_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X PATCH \
-H "Content-Type: application/json" \
-d '{"status":"draft","company":"Example Corp"}' {
"id": "pick-list_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"status": "draft",
"company": "Example Corp",
"parent_warehouse": "parent_warehouse_example",
"customer": "customer_example",
"work_order": "work_order_example",
"for_qty": 0,
"purpose": "Material Transfer for Manufacture",
"material_request": "material_request_example",
"group_same_items": false,
"scan_barcode": "scan_barcode_example",
"scan_mode": false,
"prompt_qty": false,
"customer_name": "customer_name_example",
"consider_rejected_warehouses": false,
"pick_manually": false,
"ignore_pricing_rule": false,
"delivery_status": "delivery_status_example",
"per_delivered": 0
} /api/stock/pick-list/{id} Delete a pick list
Permanently deletes a pick list. This cannot be undone.
Path parameters
The identifier of the pick list to delete.
Returns
Returns a confirmation that the pick list has been deleted.
curl https://api.overplane.dev/api/stock/pick-list/pick-list_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X DELETE {
"id": "pick-list_abc123",
"deleted": true
} /api/stock/pick-list/{id}/submit Submit a pick list
Submits a draft pick list, transitioning its status from draft to submitted.
Path parameters
The identifier of the pick list to act on.
Returns
Returns the pick list object with updated status.
curl https://api.overplane.dev/api/stock/pick-list/pick-list_abc123/submit \
-H "Authorization: Bearer sk_test_..." \
-X POST {
"id": "pick-list_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"status": "draft",
"company": "Example Corp",
"parent_warehouse": "parent_warehouse_example",
"customer": "customer_example",
"work_order": "work_order_example",
"for_qty": 0,
"purpose": "Material Transfer for Manufacture",
"material_request": "material_request_example",
"group_same_items": false,
"scan_barcode": "scan_barcode_example",
"scan_mode": false,
"prompt_qty": false,
"customer_name": "customer_name_example",
"consider_rejected_warehouses": false,
"pick_manually": false,
"ignore_pricing_rule": false,
"delivery_status": "delivery_status_example",
"per_delivered": 0
} /api/stock/pick-list/{id}/cancel Cancel a pick list
Cancels a submitted pick list, transitioning its status to cancelled.
Path parameters
The identifier of the pick list to act on.
Returns
Returns the pick list object with updated status.
curl https://api.overplane.dev/api/stock/pick-list/pick-list_abc123/cancel \
-H "Authorization: Bearer sk_test_..." \
-X POST {
"id": "pick-list_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"status": "draft",
"company": "Example Corp",
"parent_warehouse": "parent_warehouse_example",
"customer": "customer_example",
"work_order": "work_order_example",
"for_qty": 0,
"purpose": "Material Transfer for Manufacture",
"material_request": "material_request_example",
"group_same_items": false,
"scan_barcode": "scan_barcode_example",
"scan_mode": false,
"prompt_qty": false,
"customer_name": "customer_name_example",
"consider_rejected_warehouses": false,
"pick_manually": false,
"ignore_pricing_rule": false,
"delivery_status": "delivery_status_example",
"per_delivered": 0
} Line items
Child objects that belong to this pick list. These are accessed via the parent's ID.
Pick List Item
Attributes
Endpoints
/api/stock/pick-list-item?parent_id={id} /api/stock/pick-list-item /api/stock/pick-list-item/{id} /api/stock/pick-list-item/{id} /api/stock/pick-list-item/reorder {
"id": "pick-list-item_abc123",
"idx": 1,
"pick_list_id": "pick_list_id_example",
"qty": 1,
"picked_qty": 0,
"warehouse": "warehouse_example",
"item_name": "item_name_example",
"description": "description_example",
"serial_no": "serial_no_example",
"batch_no": "batch_no_example",
"stock_uom": "stock_uom_example",
"uom": "uom_example",
"conversion_factor": 0,
"stock_qty": 0,
"item_code": "item_code_example",
"sales_order": "sales_order_example",
"sales_order_item": "sales_order_item_example",
"material_request": "material_request_example",
"material_request_item": "material_request_item_example",
"item_group": "item_group_example",
"product_bundle_item": "product_bundle_item_example",
"serial_and_batch_bundle": "serial_and_batch_bundle_example",
"stock_reserved_qty": 0,
"use_serial_batch_fields": false,
"delivered_qty": 0,
"actual_qty": 0,
"company_total_stock": 0
}