Printago API
PUT /v1/sku-variants/filters

Set filtered values for a SKU option

Requires: sku.edit

Request Body

- Filter configuration with SKU, option, and allowed values

SetFilteredValuesRequest
filterModerequired
any
optionIdrequired
string
pattern: ^[a-z0-9]{24}$
skuIdrequired
string
pattern: ^[a-z0-9]{24}$
valueIdsrequired
string[]

Example Request

application/json
{
  "skuId": "string",
  "optionId": "string",
  "valueIds": [
    "string"
  ]
}

Response Schema

Response
value
object[]

Example Response

200 OK — application/json
[
  {
    "bindingId": "string",
    "skuId": "string",
    "optionId": "string",
    "optionValueId": "string",
    "id": "string",
    "storeId": "string",
    "createdAt": "2026-08-24T03:58:56.356Z",
    "updatedAt": "2026-08-24T03:58:56.356Z"
  }
]