PATCH /ingredient_opinions/:opinion_uuid

PATCH /ingredient_opinions/{opinion_uuid}

Update an ingredient opinion

Path parameters

application/json

Body Required

Responses

PATCH /ingredient_opinions/{opinion_uuid}
curl \
 -X PATCH https://api.cosmily.com/api/v1/ingredient_opinions/{opinion_uuid} \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"opinion_text":"string","publish":true}'
Request example
{
  "opinion_text": "string",
  "publish": true
}
Response examples (200)
{
  "data": {
    "entry_uuid": "string",
    "opinion_uuid": "string",
    "revision": 42,
    "publication": "published",
    "created_at": "string",
    "feeling_type": "positive",
    "ingredient_id": 42,
    "author_user_id": 42,
    "active": true,
    "content": {
      "text": "working towards #sustainability with @alex",
      "entities": {
        "hashtags": [
          {
            "text": "sustainability",
            "indices": [
              16,
              31
            ]
          }
        ],
        "user_mentions": [
          {
            "username": "alex",
            "indices": [
              37,
              42
            ],
            "id": 42,
            "name": "string"
          }
        ]
      }
    }
  }
}