APIを介して製品を追加するときに、可能なすべての変数のリンクまたは例を誰かが持っていますか? または、受け入れられたキー=値のペアと言ったほうがよいかもしれません。
docs api にはこれとあれの弱い例がありますが、受け入れられたすべての引数を示す決定的な配列はありません。
http://api.shopify.com/product.html#create
以下は、API の例と試行錯誤からまとめたものです。
$array = array(
'id' => $item->store_id,
'title' => $this->sanitize( $item->name ),
'body_html' => $this->sanitize( $item->romance_copy ),
'vendor' => $item->brand,
'product_type' => $item->ware_desc, // may not be correct
'tags' => $item->keyword,
'images' => array(),
'metafields' => array(),
// http://wiki.shopify.com/Variant#variant.id
'variants' => array( // Single variant is required for each product.
array(
'id' => $item->store_id,
'option1' => 'First',
'price' => $item->price_msrp,
// 'compare_at_price' => '',
// 'available' => '',
'inventory_quantity' => $item->inventory_quantity,
// 'weight' => '',
'sku' => $item->direct_sku,
// 'requires_shipping' => '',
// 'taxable' => '',
),
)
);