Flavours API
ProductModifier

Detail Product Modifier

GET
/api/v2/products/{productId}/modifiers/{modifierId}

Get a single modifier of a product.

AuthorizationBearer <token>

You can retrieve your token by logging in.

In: header

Path Parameters

productId*string
modifierId*string

Header Parameters

X-API-Version*string

API contract version to target. See the Changelog for what changed in each version.

Default"2.0.0"
Value in"2.3.0" | "2.2.0" | "2.1.0" | "2.0.0"

Request Body

application/json

includes*array<>

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://api.flavours.sa/dev/api/v2/products/ipsa/modifiers/accusamus" \  -H "X-API-Version: 2.3.0" \  -H "Content-Type: application/json" \  -d '{    "includes": [      "ducimus"    ]  }'
{
  "meta": {
    "code": 200,
    "status": "success",
    "message": "Modifier retrieved successfully."
  },
  "data": {
    "id": 717712180771158,
    "modifierable_id": "41a45926-7f75-481d-a78a-682ba4a647a1",
    "name_en": "Aliquam consequatur",
    "name_ar": "fugiat",
    "type": "OPTION",
    "calorie": null,
    "price": 42.72,
    "tax": 0,
    "total": 42.72,
    "cost": null,
    "profit": null,
    "is_tax_included": true,
    "deleted_at": null,
    "barcode": null,
    "barcode_img": null,
    "weight_amount": null,
    "weight_unit": null,
    "market_id": "848aa3f5-fc3d-42d3-8cc9-4c6edd0140d0",
    "branch_id": "7c538fd7-9547-4b16-959d-f01052e04c6f",
    "modifierable_type": "PRODUCT_MODIFIER_PRODUCT",
    "stock": null,
    "product_id": "41a45926-7f75-481d-a78a-682ba4a647a1",
    "sku": null,
    "ingredients": [],
    "prices": [],
    "product": {
      "id": "41a45926-7f75-481d-a78a-682ba4a647a1",
      "market_id": "848aa3f5-fc3d-42d3-8cc9-4c6edd0140d0",
      "branch_id": "7c538fd7-9547-4b16-959d-f01052e04c6f",
      "name_en": "Aut corporis",
      "name_ar": "quia",
      "description_en": null,
      "description_ar": null,
      "stock": 50,
      "order": 63,
      "images": null,
      "is_active": true,
      "created_at": 1787446700294,
      "updated_at": 1787446700294,
      "deleted_at": null,
      "rating_amount": 0,
      "rating_avg": "0.00",
      "sold_amount": 0,
      "sold_revenue": 0,
      "qoyod_id": null,
      "min_additionals": null,
      "max_additionals": null,
      "is_global": false,
      "product_category_id": null,
      "preparation_time": null,
      "category": null
    },
    "recipes": []
  }
}
{
  "meta": {
    "code": 401,
    "status": "error",
    "message": "Unauthenticated."
  },
  "data": null
}
{
  "meta": {
    "code": 403,
    "status": "error",
    "message": "Unauthorized."
  },
  "data": null
}
{
  "meta": {
    "code": 404,
    "status": "error",
    "message": "Resource not found."
  },
  "data": null
}
{
  "meta": {
    "code": 500,
    "status": "error",
    "message": "Internal server error."
  },
  "data": null
}