Update Product custom field enumeration

  • Method: PATCH

  • URL: /api/v1/product-custom-field-enums/{id}/

Updates a product custom field enumeration if requesting manager has access permissions to it.

Example request

request body (application/json)
{
    "value": "f4"
}

Responses

Response (200)
{
    "id": 1,
    "value": "f4",
    "product_custom_field": 69
}

Request parameters

Body parameters

  • name: "value "

    • kind: required

    • type: string

(Note: the parameter name is shown as in the original specification, including the trailing space.)

Was this helpful?