PATCH /facets/update/:id

PATCH /facets/update/{id}

Update facet

Path parameters

  • id integer(int64) Required

    ID of the resource to fetch

application/json

Body Required

Responses

PATCH /facets/update/{id}
curl \
 -X PATCH https://api.cosmily.com/api/v1/facets/update/{id} \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"menuindex":42}'
Request example
{
  "menuindex": 42
}
Response examples (201)
{
  "data": {
    "id": 1,
    "facet_type": "skin_types",
    "facet_value": "dry skin",
    "menuindex": 0,
    "created_at": "2021-10-04T13:24:22.000Z",
    "updated_at": "2021-11-13T20:23:18.000Z"
  }
}