Retrieve Product custom field enumeration

Retrieve a single product custom field enumeration if the requesting manager has access permissions to it.

  • Method: GET

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

Path parameters

  • id — (required) The ID of the product custom field enumeration.

Example request

// (no body)

Example responses

chevron-right200 — Successhashtag
Response (200)
{
    "id": 1,
    "value": "vv1",
    "product_custom_field": 69
}
chevron-right404 — Not foundhashtag
Response (404)
{
  "message": "Ain't no cake like that."
}

Was this helpful?