As a prerequisite, this API is used to obtain sellingPlan information.
https://shopify.dev/docs/api/ajax/reference/product#get-locale-products-product-handle-js
For a product that includes three variations, if you associate plan group A with the first variation and plan group A with the second variation, the structure of the JSON data returned will differ depending on the store.
What is the reason for this difference?
correct JSON data
{
"selling_plan_groups": [
{
"id": "de6ea32ed60090ea69fcd92c946ca3fe6a7743d0",
"name": "ウィジェット検証用1",
"options": [
{
"name": "ウィジェット検証用1",
"position": 1,
"values": ["プラン1"]
}
],
"selling_plans": [
{
"id": 8612348198,
"name": "プラン1",
"description": "",
"options": [
{
"name": "ウィジェット検証用1",
"position": 1,
"value": "プラン1"
}
],
"recurring_deliveries": true,
"price_adjustments": [
{
"order_count": null,
"position": 1,
"value_type": "percentage",
"value": 5
}
]
}
],
"app_id": null
},
{
"id": "a0a0af06a4f3877b0e50310c03e70690aff58dc3",
"name": "ウィジェット検証用2",
"options": [
{
"name": "ウィジェット検証用2",
"position": 1,
"values": ["プラン1"]
}
],
"selling_plans": [
{
"id": 8612380966,
"name": "プラン1",
"description": "",
"options": [
{
"name": "ウィジェット検証用2",
"position": 1,
"value": "プラン1"
}
],
"recurring_deliveries": true,
"price_adjustments": [
{
"order_count": null,
"position": 1,
"value_type": "percentage",
"value": 5
}
]
}
],
"app_id": null
}
]
}
Incorrect JSON data
For some reason, they are consolidated into one plan group.
{
"selling_plan_groups": [
{
"id": "9b03a6290bf8382c19a4ec723375ad1f75c4da50",
"name": "通常配送より5%オフ!",
"options": [
{
"name": "通常配送より5%オフ!",
"position": 1,
"values": ["お得用1ヶ月分", "お得用3ヶ月分"]
}
],
"selling_plans": [
{
"id": 689486332187,
"name": "お得用1ヶ月分",
"description": "毎月1回、商品を配送いたします。",
"options": [
{
"name": "通常配送より5%オフ!",
"position": 1,
"value": "お得用1ヶ月分"
}
],
"recurring_deliveries": true,
"price_adjustments": [
{
"order_count": null,
"position": 1,
"value_type": "percentage",
"value": 5
}
]
},
{
"id": 689486364955,
"name": "お得用3ヶ月分",
"description": "3ヶ月毎に1回、商品を配送いたします。",
"options": [
{
"name": "通常配送より5%オフ!",
"position": 1,
"value": "お得用3ヶ月分"
}
],
"recurring_deliveries": true,
"price_adjustments": [
{
"order_count": null,
"position": 1,
"value_type": "percentage",
"value": 5
}
]
}
],
"app_id": null
}
]
}