Admin value management

Delete Value

Delete a specific value for a property from all products

  • property: The property name
  • value: The value to delete
DELETE
/admin/value
AuthorizationBearer <token>

In: header

propertyProperty
valueValue

Response Body

curl -X DELETE "https://api.folksonomy.openfoodfacts.org/admin/value" \  -H "Content-Type: application/json" \  -d '{    "property": "string",    "value": "string"  }'
null
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}