This endpoint retrieves detailed information about a specific product box identified by its unique ID. It provides complete configuration information about the box, including its contents, type, status, and other relevant details.
Authentication: Required. Use Basic Authentication with your API credentials.
GET/api/productBoxes/{box_id}
Returns detailed information about a specific product box identified by its ID.
Box type: "G" for grade box (assortment), "C" for closed box (complete set)
box.size_variant_id
string
ID of the size variant linked to this box
box.status
string
Box status: "A" for active, "D" for disabled
box.size_qty_info
array
Array of size/quantity pairs defining the contents of the box
box.size_qty_info[].size
string
Size identifier (e.g., "35/36", "37/38")
box.size_qty_info[].amount
string
Quantity of items in this size within the box
Status Codes
Status Code
Description
200 OK
Request successful, box details returned
401 Unauthorized
Authentication credentials were missing or invalid
404 Not Found
Box with the specified ID does not exist
500 Internal Server Error
An error occurred on the server
Tip: You can use this endpoint to verify the specific contents of a box before creating products that use this box configuration. This is particularly useful when setting up new product listings that will be sold in pre-defined size assortments.