إلحصول على سجل عمليات إلطلب:
بمزإمنة بيانات نظام إلعميل مع نظام خلل ، www.shopv.com API وإلتي تسمح يصف هذإ إلمستند نقاط إلتكامل إلمتاحة للعملء منwww.shopv.com
عنوإن إلوإجهة:
https://api.shopv.com/sku-create
طريقة إلطلب:
POST
طلب معلمات (رؤوس):
طلب إلمعلمات(bodyParam):
حالة إلطلب:
<?php
$ch = curl_init();
$url = 'https://api.shopv.com/sku-create';
$header = array(
'Content-Type:application/x-www-form-urlencoded',
'apikey: your apikey',
);
$post_data = array(
'package_number' => 'CNSTORM-20160301-00001',
'tracking_number' => 'NO100001',
'shipping_method' => 'SF',
'quantity' => 8,
'info' => array(
array(
'sku' => 'sku-iv-1',
'product_name' => 'shirt',
'product_url' => 'https://item.taobao.com/item.htm?spm=a1z10.1-c.w5003-10229753858.1.9rA5ew&id=524430044755&scene=taobao_shop',
'color' => 'Red Pansy',
'size' => 'XS',
'price' => 100,
'supplier' => 'taobao',
'quantity' => 4,
),
array(
'sku' => 'sku-iv-2',
'product_name' => 'shirt',
'product_url' => 'https://item.taobao.com/item.htm?spm=a1z10.33-c.w4002-12426177414.14.bqhm4D&id=39906160111',
'color' => 'Pansy',
'size' => 'XS',
'supplier' => 'taobao',
'quantity' => 1,
),
array(
'sku' => 'sku-iv-3',
'product_name' => 'shirt',
'product_url' => 'https://item.taobao.com/item.htm?spm=a1z10.33-c.w4002-12426177414.14.bqhm4D&id=39906160111',
'color' => 'Green Pansy',
'size' => 'XS',
'supplier' => 'whoolala',
'quantity' => 3,
),
),
'inspection' => 0,
'remark' => 'test',
'business_type' => 1
);
// Add apikey to header
curl_setopt($ch, CURLOPT_HTTPHEADER , $header);
// Add post_data to bodyParam
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($post_data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// HTTP request
curl_setopt($ch , CURLOPT_URL , $url);
$res = curl_exec($ch);
var_dump(json_decode($res));
?>
مثال على إرجاعJSON:
{
"code": 0,
"msg": "success",
"data": null
}
ملحظة:
Repeat create SKU, execute update SKU information operation.
رسالة خطأ: