Body Required
-
Values are
cleanser
,toner
,serum
,moisturizer
,spf
, orother
. -
time_of_day string
Values are
AM
,PM
, orBOTH
.
POST /ingredient_matchers/{token}.yml
curl \
-X POST https://api.cosmily.com/api/v1/ingredient_matchers/{token}.yml \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"category":"cleanser","time_of_day":"AM"}'
Request example
{
"category": "cleanser",
"time_of_day": "AM"
}
Request examples
{
"category": "cleanser",
"time_of_day": "AM"
}
Response examples (201)
{
"data": {
"id": 42,
"user_id": 42,
"analyze_ingredient_list_log_uuid": "string",
"product_category_id": 42,
"matchers": [
"string"
],
"time_of_day": "string",
"created_at": "string"
}
}
Response examples (201)
{
"data": {
"id": 42,
"user_id": 42,
"analyze_ingredient_list_log_uuid": "string",
"product_category_id": 42,
"matchers": [
"string"
],
"time_of_day": "string",
"created_at": "string"
}
}