Body Required
POST /product_drafts/approve
curl \
-X POST https://api.cosmily.com/api/v1/product_drafts/approve \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"product_draft_id":42}'
Request example
{
"product_draft_id": 42
}
Request examples
{
"product_draft_id": 42
}
Response examples (200)
{
"data": {
"id": 42,
"author_user_id": 42,
"reviewer_user_id": 42,
"product_attributes": {
"image": "string",
"title": "string",
"brand_id": 42,
"raw_label": "string",
"category_id": 42
},
"ingredient_classifications": [
{
"label_text": "string",
"label_order": 42,
"normalized_label": "string",
"recognized_ingredients": [
{
"id": 42,
"title": "string"
}
],
"classified_ingredient_id": 42
}
],
"draft_version": 42,
"created_at": "string",
"updated_at": "string",
"approved_at": "string",
"approved_product_id": 42
}
}
Response examples (200)
{
"data": {
"id": 42,
"author_user_id": 42,
"reviewer_user_id": 42,
"product_attributes": {
"image": "string",
"title": "string",
"brand_id": 42,
"raw_label": "string",
"category_id": 42
},
"ingredient_classifications": [
{
"label_text": "string",
"label_order": 42,
"normalized_label": "string",
"recognized_ingredients": [
{
"id": 42,
"title": "string"
}
],
"classified_ingredient_id": 42
}
],
"draft_version": 42,
"created_at": "string",
"updated_at": "string",
"approved_at": "string",
"approved_product_id": 42
}
}