Delete Product Parameter

Delete a product parameter definition.

DELETE/v1/catalog/products/{productId}/parameters/{id}
Path parameters
productId*string
id*string
Response

No Content

Request
const response = await fetch('/v1/catalog/products/{productId}/parameters/{id}', {
    method: 'DELETE',
    headers: {},
});
const data = await response.json();
Response
{
  "type": "text",
  "title": "text",
  "status": 0,
  "detail": "text",
  "instance": "text"
}

Last updated