0
我正在開發shopify私人應用程序。在一些任務中添加使用shopify API方法的一些元字段:如何使用shopify API獲取收藏metafields
添加metafield現有的集合
PUT /admin/custom_collections/#{id}.json
{
"custom_collection": {
"id": 841564295,
"metafields": [
{
"key": "new",
"value": "newvalue",
"value_type": "string",
"namespace": "global"
}
]
}
}
==================== ====================== 接下來,我需要獲取所有集合元字段,但我沒有找到任何解決方案。
你在問什麼?你能夠添加metafields但不檢索它們或不添加它們嗎? – bknights