$token = \"Your access_token\"
$data[\"article_id\"] = xxxx;
$data[\"payment_methods\"] = array(\"payment_method_id\"=>101);
$data[\"shiping_methods\"] = array(\"shiping_method_id\"=>95);
$data[\"stock_id\"] = xxxx;
$data[\"quantity\"] = 1;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, \"URL-HERE\" );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(\'Authorization: Bearer \' . $token));
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$response = curl_exec($ch);
curl_close($ch);
print_r( $response );