GET /product_pitches/:id/ingredient_opinions

GET /product_pitches/{id}/ingredient_opinions

Get ingredient opinions to product pitch

Path parameters

  • id integer(int64) Required

    ID of the resource to fetch

Responses

GET /product_pitches/{id}/ingredient_opinions
curl \
 -X GET https://api.cosmily.com/api/v1/product_pitches/{id}/ingredient_opinions \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "uuid": "string",
      "feeling_id": 42,
      "created_at": "string",
      "ingredient_feeling": {
        "id": 42,
        "active": true,
        "feeling_type": "positive",
        "created_at": "string",
        "updated_at": "string",
        "ingredient_id": 42,
        "author_user_id": 42
      },
      "current_entry": {
        "uuid": "string",
        "opinion_uuid": "string",
        "revision": 42,
        "publication": "published",
        "created_at": "string",
        "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"
              }
            ]
          }
        }
      }
    }
  ]
}