GET /my/ingredient_feelings/:ingredient_id_or_alias
Returns the active ingredient feeling of the specified ingredient for the logged in user
Path parameters
-
specify an Ingredient by ID or Alias
GET /my/ingredient_feelings/{ingredient_id_or_alias}
curl \
-X GET https://api.cosmily.com/api/v1/my/ingredient_feelings/{ingredient_id_or_alias} \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": {
"id": 42,
"active": true,
"feeling_type": "positive",
"created_at": "string",
"updated_at": "string",
"ingredient_id": 42,
"author_user_id": 42
}
}
Response examples (200)
{
"data": {
"id": 42,
"active": true,
"feeling_type": "positive",
"created_at": "string",
"updated_at": "string",
"ingredient_id": 42,
"author_user_id": 42
}
}