This endpoint allows you to retrieve detailed information about a specific product option exception by its unique identifier.
GET /api/exceptions/1
HTTP/1.1 200 OK and a JSON response with the exception details.
{
"exception_id": "1",
"product_id": "12",
"combination": {
"size": "small",
"color": "red"
},
"position": 10,
"price": "15.00",
"stock": 5,
"active": "Y"
}
| Field | Type | Description |
|---|---|---|
| exception_id | string | The unique identifier of the exception |
| product_id | string | The ID of the product this exception belongs to |
| combination | object | The specific product option combination this exception applies to |
| position | number | The sorting position of this exception |
| price | string | The special price for this option combination |
| stock | number | The available stock for this option combination |
| active | string | Whether the exception is active (Y) or not (N) |