GET /my/product_drafts/reviewed

GET /my/product_drafts/reviewed

Returns the product drafts reviewed by the logged in user

Query parameters

  • approved boolean

    filter based on approval status

  • expand string

    boolean flag to expand associated entities in the response

  • page integer

    requested page number

    Minimum value is 1. Default value is 1.

  • page_size integer

    requested page size

    Minimum value is 1, maximum value is 100. Default value is 12.

Responses

GET /my/product_drafts/reviewed
curl \
 -X GET https://api.cosmily.com/api/v1/my/product_drafts/reviewed \
 -H "Authorization: Bearer $ACCESS_TOKEN"
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,
      "brand": {
        "id": 42,
        "alias": "string",
        "title": "string",
        "created_at": "string",
        "updated_at": "string",
        "owner_user_id": 42
      },
      "category": {
        "id": 42,
        "title": "string",
        "alias": "string",
        "menuindex": 42,
        "parent_id": 42
      },
      "approved_product": {
        "id": 42,
        "full_title": "string",
        "alias": "string",
        "image": "string"
      }
    }
  ],
  "links": {
    "first": "string",
    "last": "string",
    "prev": "string",
    "next": "string"
  }
}