GET /my/ingredient_opinions/:ingredient_id_or_alias

GET /my/ingredient_opinions/{ingredient_id_or_alias}

Returns the active ingredient opinion of the specified ingredient for the logged in user

Path parameters

Responses

GET /my/ingredient_opinions/{ingredient_id_or_alias}
curl \
 -X GET https://api.cosmily.com/api/v1/my/ingredient_opinions/{ingredient_id_or_alias} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
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"
          }
        ]
      }
    }
  }
}